jasmine-node
Advanced tools
Comparing version 1.10.1 to 1.10.2
@@ -271,4 +271,4 @@ var util, | ||
function printVersion(){ | ||
console.log("1.10.1"); | ||
console.log("1.10.2"); | ||
process.exit(0); | ||
} |
@@ -63,2 +63,6 @@ var fs = require('fs'); | ||
function removeJasmineFrames(text) { | ||
if (!text) { | ||
return text; | ||
} | ||
var lines = []; | ||
@@ -65,0 +69,0 @@ text.split(/\n/).forEach(function(line){ |
@@ -32,2 +32,3 @@ (function() { | ||
this.includeStackTrace_ = config.includeStackTrace === false ? false : true; | ||
this.stackFilter_ = config.stackFilter || function(t) { return t; }; | ||
} | ||
@@ -134,3 +135,3 @@ | ||
this.printLine_(' Stacktrace:'); | ||
this.print_(' ' + failure.stackTrace); | ||
this.print_(' ' + this.stackFilter_(failure.stackTrace)); | ||
} | ||
@@ -137,0 +138,0 @@ } |
{ | ||
"name": "jasmine-node", | ||
"version": "1.10.1", | ||
"version": "1.10.2", | ||
"description": "DOM-less simple JavaScript BDD testing framework for Node", | ||
@@ -5,0 +5,0 @@ "contributors": [ |
@@ -149,2 +149,6 @@ jasmine-node | ||
To run it: | ||
node lib/jasmine-node/cli.js --runWithRequireJs --requireJsSetup ./spec-requirejs/requirejs-setup.js ./spec-requirejs/ | ||
exceptions | ||
@@ -205,2 +209,4 @@ ---------- | ||
* _1.10.2 - Restored stack filter which was accidentally removed (thanks to | ||
[kevinsawicki](https://github.com/kevinsawicki))_ | ||
* _1.10.1 - `beforeEach` and `afterEach` now properly handle the async-timeout function_ | ||
@@ -207,0 +213,0 @@ * _1.10.0 - Skipped tests now show in the terminal reporter's output (thanks |
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
156091
4212
237