2010-07-24 01:08:33 +00:00
---
layout: default
2010-07-24 01:36:33 +00:00
title: "Jasmine: Javascript Testing Framework"
2010-07-24 01:08:33 +00:00
---
< style type = "text/css" >
h2 { border-top: none; }
< / style >
< pre >
2010-06-26 00:36:03 +00:00
describe("Jasmine", function() {
it("makes testing JavaScript awesome!", function() {
expect(yourCode).toBeLotsBetter();
});
});< / pre >
2010-06-24 00:38:43 +00:00
2010-07-24 01:08:33 +00:00
< h2 > Documentation< / h2 >
< ul >
2010-07-28 01:45:13 +00:00
< li > < a href = "user-guide.html" > < b > User Guide< / b > < / a > < / li >
2010-07-24 01:37:33 +00:00
< li > < a href = "release-notes.html" > Release Notes< / a > < / li >
2010-07-28 01:45:13 +00:00
< li > < a href = "jsdoc/index.html" > API Documentation< / a > < / li >
< li > < a href = "http://github.com/pivotal/jasmine#README" > Contributor Guide< / a > < / li >
2010-07-24 01:08:33 +00:00
< / ul >
< h2 > Download< / h2 >
2010-07-28 01:45:13 +00:00
< h4 > For pure JavaScript projects:< / h4 >
2010-07-24 01:08:33 +00:00
<!-- START_DOWNLOADS -->
2010-09-14 20:42:38 +00:00
< table id = "standalone-downloads" >
2010-07-24 01:08:33 +00:00
< tr > < th > < / th > < th > Version< / th > < th > Size< / th > < th > Date< / th > < th > SHA1< / th > < / tr >
2010-08-26 01:44:28 +00:00
< tr >
2010-09-14 20:01:42 +00:00
< 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 >
2010-09-14 20:42:38 +00:00
< tr class = "rc" >
2010-08-26 20:14:28 +00:00
< 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 >
2010-08-26 01:44:28 +00:00
< td class = "size" > 19k< / td >
2010-08-26 20:14:28 +00:00
< td class = "date" > 2010/08/26 13:09:41 PDT< / td >
< td class = "sha" > 20e7da22bc7ce3433331a5ad44eb199f4ff34065< / td >
2010-08-26 01:44:28 +00:00
< / tr >
< tr >
2010-06-30 07:09:01 +00:00
< 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 >
2010-08-26 01:44:28 +00:00
< / tr >
2010-06-26 00:36:03 +00:00
< / table >
<!-- END_DOWNLOADS -->
2010-07-28 01:45:13 +00:00
< h4 > For Rails integration:< / h4 >
< pre >
> gem install jasmine
> script/generate jasmine
> rake spec
< / pre >
2010-06-26 00:36:03 +00:00
2010-07-28 01:45:13 +00:00
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 >
2010-07-20 16:47:10 +00:00
2010-07-24 01:08:33 +00:00
< h2 > Support< / h2 >
2010-07-20 16:47:10 +00:00
2010-07-24 01:08:33 +00:00
< 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 >
2010-07-20 16:47:10 +00:00
2010-07-24 01:08:33 +00:00
< p >
2010-07-28 01:45:13 +00:00
< 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 >
2010-07-24 01:08:33 +00:00
< / p >