jasmine-node
Advanced tools
Comparing version 1.6.0 to 1.7.0
@@ -64,3 +64,3 @@ var util, | ||
require('coffee-script'); | ||
extentions = "js|coffee"; | ||
extentions = "js|coffee|litcoffee"; | ||
break; | ||
@@ -67,0 +67,0 @@ case '-m': |
var fs = require('fs'); | ||
var mkdirp = require('mkdirp'); | ||
var util; | ||
@@ -97,3 +98,3 @@ try { | ||
util.puts('creating junit xml report save path: ' + junitreport.savePath); | ||
fs.mkdirSync(junitreport.savePath, "0755"); | ||
mkdirp.sync(junitreport.savePath, "0755"); | ||
} | ||
@@ -100,0 +101,0 @@ jasmineEnv.addReporter(new jasmine.JUnitXmlReporter(junitreport.savePath, |
{ | ||
"name": "jasmine-node", | ||
"version": "1.6.0", | ||
"version": "1.7.0", | ||
"description": "DOM-less simple JavaScript BDD testing framework for Node", | ||
@@ -31,3 +31,4 @@ "contributors": [ | ||
"underscore": ">= 1.3.1", | ||
"gaze": "~0.3.2" | ||
"gaze": "~0.3.2", | ||
"mkdirp": "~0.3.5" | ||
}, | ||
@@ -34,0 +35,0 @@ "bin": "bin/jasmine-node", |
@@ -17,2 +17,3 @@ jasmine-node | ||
---------- | ||
* Ability to test specs written in Literate Coffee-Script | ||
* Teamcity Reporter reinstated. | ||
@@ -31,2 +32,3 @@ * Ability to specify multiple files to test via list in command line | ||
* Verbose mode tabs <code>describe</code> blocks much more accurately! | ||
* --coffee now allows specs written in Literate CoffeeScript (.litcoffee) | ||
@@ -48,4 +50,3 @@ install | ||
spec/ directory (note: your specification files must end with either | ||
.spec.js or .spec.coffee; otherwise jasmine-node won't find them!). You | ||
can use sub-directories to better organise your specs. | ||
.spec.js, .spec.coffee or .spec.litcoffee; otherwise jasmine-node won't find them!). You can use sub-directories to better organise your specs. | ||
@@ -65,3 +66,3 @@ If you have installed the npm package, you can run it with: | ||
* <code>--autotest</code>, provides automatic execution of specs after each change | ||
* <code>--coffee</code>, allow execution of .coffee specs | ||
* <code>--coffee</code>, allow execution of .coffee and .litcoffee specs | ||
* <code>--color</code>, indicates spec output should uses color to | ||
@@ -149,2 +150,3 @@ indicates passing (green) or failing (red) specs | ||
* _1.7.0 - Literate Coffee-Script now testable (thanks to [magicmoose](https://github.com/magicmoose))_ | ||
* _1.6.0 - Teamcity Reporter Reinstated (thanks to [bhcleek](https://github.com/bhcleek))_ | ||
@@ -151,0 +153,0 @@ * _1.5.1 - Missing files and require exceptions will now report instead of failing silently_ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
159
148204
7
40
4049
+ Addedmkdirp@~0.3.5
+ Addedmkdirp@0.3.5(transitive)