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.
7 lines
145 B
JavaScript
7 lines
145 B
JavaScript
var shell = require('shelljs');
|
|
|
|
module.exports = {
|
|
execSpecsInNode: function() {
|
|
shell.exec("node spec/node_suite.js --color=true")
|
|
}
|
|
}; |