forked from venusjs/venusjs.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (109 loc) · 4.63 KB
/
index.html
File metadata and controls
118 lines (109 loc) · 4.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<!--[if lt IE 7]><html class="no-js ie ie6 lte9 lte8 lte7" lang=""><![endif]-->
<!--[if IE 7]><html class="no-js ie ie7 lte9 lte8 lte7" lang=""><![endif]-->
<!--[if IE 8]><html class="no-js ie ie8 lte9 lte8" lang=""><![endif]-->
<!--[if IE 9]><html class="no-js ie ie9 lte9" lang=""><![endif]-->
<!--[if gt IE 9]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<link href="http://fonts.googleapis.com/css?family=Cabin:400,500,600,700" rel="stylesheet" type="text/css">
<!-- <link rel="stylesheet" type="text/css" media="screen" href="/css/all-1366700782000.css"> -->
<link href="/css/main.css" rel="stylesheet" type="text/css">
<link href="/css/venus.css" rel="stylesheet" type="text/css">
<link rel="icon" type="image/png" href="images/favicon.ico">
</head>
<body>
<div id="main" role="main">
<article>
<p><!-- Intro --></p>
<div id="intro">
<h1>Introducing Venus.js</h1>
<h4>Organize and run your entire JS testing system with a single tool using Node.js</h4>
<p>By eliminating repetitive tasks and friction points, Venus lets you focus on writing tests instead of running them. Already have JavaScript testing in place? Perfect! Venus is designed to orchestrate and automate existing tools like Mocha, Jasmine and QUnit.</p>
<div class="actions">
<a class="cta" href="http://www.github.com/linkedin/venus.js">GitHub</a>
<a class="cta" href="https://groups.google.com/forum/#!forum/venusjs">Discussion</a>
<a class="cta" href="https://venusjs.readthedocs.org/en/latest/">Documentation</a>
</div>
</div>
<p><!-- Quick Launch --></p>
<div id="quick-launch">
<h2>Quick Launch</h2>
<ul class="instructions">
<li class="step active" data-step-number="1">
<a href="#command1">
<div class="step-number">1</div>
<p>Install Node.js</p>
</a>
</li>
<li class="step" data-step-number="2">
<a href="#command2">
<div class="step-number">2</div>
<p>Install Venus.js via NPM</p>
</a>
</li>
<li class="step" data-step-number="3">
<a href="#command3">
<div class="step-number">3</div>
<p>Verify installation</p>
</a>
</li>
</ul>
<div class="terminal">
<p class="prompt">
[ Venus ~ ]
<span id="command1" class="command active" data-step-number="1">See instructions at <a href="http://nodejs.org/">http://nodejs.org/</a></span>
<span id="command2" class="command" data-step-number="2">npm install -g venus</span>
<span id="command3" class="command" data-step-number="3">venus demo</span>
</p>
<img src="/images/venus/terminal.png" alt="Terminal">
</div>
</div>
<p><!-- Stellar Features --></p>
<div id="features">
<h2>Stellar Features</h2>
<div class="feature">
<h4>CL Interface</h4>
<p>Kick off tests from the command line. Quick and easy, no need to manually launch a browser.</p>
</div>
<!-- <div class="feature"> -->
<!-- <h4>Tool integration</h4> -->
<!-- <p>Venus supports all your favorite tools, including Vim, Sublime Text, Eclipse and more. No need to leave your IDE to run your tests.</p> -->
<!-- </div> -->
<div class="feature">
<h4>Advanced Configuration</h4>
<p>Complete control over test fixtures, test harness pages and more.</p>
</div>
<div class="feature">
<h4>Use with CI</h4>
<p>Seamless integration with Selenium Grid and Travis CI.</p>
</div>
</div>
</article>
</div>
<footer id="global-footer">
<div>
<p class="copyright">
LinkedIn © 2013
</p>
<ul>
<li><a href="http://www.github.com/linkedin/venus.js">GitHub</a></li>
<li><a href="https://github.com/linkedin/venus.js/issues?state=open">Issue Tracker</a></li>
<li><a href="https://github.com/linkedin/venus.js/blob/master/CHANGELOG.md">CHANGELOG</a></li>
<li><a href="https://github.com/linkedin/venus.js/blob/master/CONTRIBUTING.md">Contributing</a></li>
</ul>
</div>
</footer>
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/venus.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36360221-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>