Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jasmine-node

Package Overview
Dependencies
Maintainers
2
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jasmine-node - npm Package Compare versions

Comparing version 1.10.1 to 1.10.2

2

lib/jasmine-node/cli.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc