76 lines
2.7 KiB
HTML
76 lines
2.7 KiB
HTML
---
|
|
layout: default
|
|
title: "Jasmine: Javascript Testing Framework"
|
|
---
|
|
<style type="text/css">
|
|
h2 { border-top: none; }
|
|
</style>
|
|
<pre>
|
|
describe("Jasmine", function() {
|
|
it("makes testing JavaScript awesome!", function() {
|
|
expect(yourCode).toBeLotsBetter();
|
|
});
|
|
});</pre>
|
|
|
|
<h2>Documentation</h2>
|
|
<ul>
|
|
<li><a href="user-guide.html"><b>User Guide</b></a></li>
|
|
<li><a href="release-notes.html">Release Notes</a></li>
|
|
<li><a href="jsdoc/index.html">API Documentation</a></li>
|
|
<li><a href="http://github.com/pivotal/jasmine#README">Contributor Guide</a></li>
|
|
</ul>
|
|
|
|
<h2>Download</h2>
|
|
<h4>For pure JavaScript projects:</h4>
|
|
<!-- START_DOWNLOADS -->
|
|
<table id="standalone-downloads">
|
|
<tr><th></th><th>Version</th><th>Size</th><th>Date</th><th>SHA1</th></tr>
|
|
<tr>
|
|
<td class="link"><a href='downloads/jasmine-standalone-1.0.0.zip'>jasmine-standalone-1.0.0.zip</a></td>
|
|
<td class="version">1.0.0</td>
|
|
<td class="size">20k</td>
|
|
<td class="date">2010/09/14 12:54:38 PDT</td>
|
|
<td class="sha">1866f654a3ad0ab9109393ce31d6613c77916607</td>
|
|
</tr>
|
|
<tr class="rc">
|
|
<td class="link"><a href='downloads/jasmine-standalone-1.0.0.rc1.zip'>jasmine-standalone-1.0.0.rc1.zip</a></td>
|
|
<td class="version">1.0.0.rc1</td>
|
|
<td class="size">19k</td>
|
|
<td class="date">2010/08/26 13:09:41 PDT</td>
|
|
<td class="sha">20e7da22bc7ce3433331a5ad44eb199f4ff34065</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="link"><a href='downloads/jasmine-standalone-0.11.1.zip'>jasmine-standalone-0.11.1.zip</a></td>
|
|
<td class="version">0.11.1</td>
|
|
<td class="size">18k</td>
|
|
<td class="date">2010/06/25 16:05:30 PDT</td>
|
|
<td class="sha">26998c7ca047e47f84c382a4efeb1dc5cb8661a6</td>
|
|
</tr>
|
|
</table>
|
|
<!-- END_DOWNLOADS -->
|
|
|
|
<h4>For Rails integration:</h4>
|
|
<pre>
|
|
> gem install jasmine
|
|
> script/generate jasmine
|
|
> rake spec
|
|
</pre>
|
|
|
|
For more details on integration with various flavors of Ruby and Rails see <a href="http://github.com/pivotal/jasmine-gem">Jasmine Gem</a>.
|
|
|
|
<h4><i>More environment integrations on the way!</i></h4>
|
|
|
|
<h2>Support</h2>
|
|
|
|
<p style="float: right">
|
|
<span class="small">Powered by <a href="http://pivotallabs.com/"><img src="images/pivotal_logo.gif" alt="Pivotal Labs" style="vertical-align: middle;"></a></span>
|
|
</p>
|
|
|
|
<p>
|
|
<b>Discussion:</b> <a href="http://groups.google.com/group/jasmine-js">http://groups.google.com/group/jasmine-js</a>
|
|
<br/><b>Group email:</b> <a href="mailto:jasmine-js@googlegroups.com">jasmine-js@googlegroups.com</a>
|
|
<br/><b>Current build status</b> of Jasmine is visible at <a href="http://ci.pivotallabs.com/">ci.pivotallabs.com</a>
|
|
<br/><b>Pivotal Tracker project:</b> <a href="http://www.pivotaltracker.com/projects/10606">http://www.pivotaltracker.com/projects/10606</a>
|
|
<br/><b>Twitter:</b> <a href="http://twitter.com/JasmineBDD">@JasmineBDD</a>
|
|
</p>
|