Difference between revisions of "Jasmine (JavaScript testing framework)"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) |
Karl Jones (Talk | contribs) |
||
Line 25: | Line 25: | ||
* [http://www.htmlgoodies.com/beyond/javascript/testing-javascript-using-the-jasmine-framework.html Testing JavaScript Using the Jasmine Framework] by Rob Gravelle | * [http://www.htmlgoodies.com/beyond/javascript/testing-javascript-using-the-jasmine-framework.html Testing JavaScript Using the Jasmine Framework] by Rob Gravelle | ||
* [https://code.tutsplus.com/tutorials/testing-your-javascript-with-jasmine--net-21229 Testing Your JavaScript With Jasmine] by Andrew Burgess | * [https://code.tutsplus.com/tutorials/testing-your-javascript-with-jasmine--net-21229 Testing Your JavaScript With Jasmine] by Andrew Burgess | ||
+ | * [https://evanhahn.com/how-do-i-jasmine/ How do I Jasmine: a tutorial] by Evan Hahn | ||
=== YouTube videos === | === YouTube videos === |
Revision as of 10:38, 25 September 2016
Jasmine is an open source unit testing framework for testing JavaScript code.
It uses the behavior-driven development model.
Description
It aims to run on any JavaScript-enabled platform, to not intrude on the application nor the IDE, and to have easy-to-read syntax.
Jasmine has a number of other features, such as custom matchers, spies, and support for asynchronous specifications.
Influences
It is heavily influenced by other unit testing frameworks, such as ScrewUnit, JSSpec, JSpec, and RSpec.
See also
External links
- Official website
- Introduction @ jasmine.github.io
- Jasmine (JavaScript testing framework) @ Wikipedia
- Testing JavaScript Using the Jasmine Framework by Rob Gravelle
- Testing Your JavaScript With Jasmine by Andrew Burgess
- How do I Jasmine: a tutorial by Evan Hahn
YouTube videos
- Unit Testing in JavaScript via Jasmine by Jesse Warden