Files
jasmine/grunt/tasks/spec.js
Davis W. Frank edc2bfae93 All Jasmine file manipulation/development moved from Thor to Grunt. Thor has been removed completely. Run grunt --help to see available tasks.
Canonical Jasmine version now lives in `package.json` (Node formatted) and is copied into Jasmine source (JavaScript and Ruby)

Jasmine distribution now has MIT license and Pivotal Labs copyright at the top of each distributed file.
2013-03-24 09:41:42 -07:00

7 lines
145 B
JavaScript

var shell = require('shelljs');
module.exports = {
execSpecsInNode: function() {
shell.exec("node spec/node_suite.js --color=true")
}
};