grunt-contrib-jasmine-example [](http://travis-ci.org/jsoverson/grunt-contrib-jasmine-example)
November 9, 2012 ยท View on GitHub
Example application using grunt-contrib-jasmine
Getting Started
If you haven't used grunt before, be sure to check out the Getting Started guide.
From the same directory as your project's Gruntfile and package.json, install the project's dependencies
npm install
Once that's done, you can run the jasmine unit tests via
grunt jasmine
package.json allows you to define the script to execute when you run 'npm test'
"scripts": {
"test": "grunt test"
},
grunt test is registered to run ['jshint', 'jasmine'] to thoroughly test your code.
grunt.registerTask('test', ['jshint', 'jasmine']);
Release History
- 2012-11-08 - v0.1.0 - Initial release