Socket
Socket
Sign inDemoInstall

nodeunit

Package Overview
Dependencies
Maintainers
2
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodeunit - npm Package Compare versions

Comparing version 0.9.2 to 0.9.3

2

deps/async.js

@@ -628,2 +628,2 @@ /*global setTimeout: false, console: false */

}());
}.call(this));

@@ -15,3 +15,3 @@ /*!

path = require('path'),
AssertionError = require('assert').AssertionError;
AssertionError = require('../assert').AssertionError;

@@ -18,0 +18,0 @@ /**

@@ -16,3 +16,3 @@ /*!

async = require('../../deps/async'),
AssertionError = require('assert').AssertionError,
AssertionError = require('../assert').AssertionError,
child_process = require('child_process'),

@@ -19,0 +19,0 @@ ejs = require('../../deps/ejs');

@@ -16,3 +16,3 @@ /*!

track = require('../track'),
AssertionError = require('assert').AssertionError;
AssertionError = require('../assert').AssertionError;

@@ -19,0 +19,0 @@ /**

@@ -15,3 +15,3 @@ /*!

path = require('path'),
AssertionError = require('assert').AssertionError;
AssertionError = require('../assert').AssertionError;

@@ -18,0 +18,0 @@ /**

@@ -15,3 +15,3 @@ /*!

track = require('../track'),
path = require('path');
path = require('path'),
AssertionError = require('../assert').AssertionError;

@@ -18,0 +18,0 @@

{
"name": "nodeunit",
"version": "0.9.2",
"version": "0.9.3",
"description": "Easy unit testing for node.js and the browser.",

@@ -66,4 +66,4 @@ "maintainers": [

"devDependencies": {
"uglify-js": ">=1.1.0",
"should": ">=0.4.2"
"uglify-js": ">=2.7.3",
"should": ">=11.1.0"
},

@@ -73,8 +73,3 @@ "bugs": {

},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/caolan/nodeunit/raw/master/LICENSE"
}
],
"license": "MIT",
"directories": {

@@ -89,3 +84,3 @@ "lib": "./lib",

"dependencies": {
"tap": "^0.7.1"
"tap": "^7.0.0"
},

@@ -92,0 +87,0 @@ "scripts": {

@@ -18,4 +18,4 @@ /*

function performBasicChecks(betterErrorString) {
betterErrorString.should.include("AssertionError");
betterErrorString.should.include("test-bettererrors");
betterErrorString.should.containEql("AssertionError");
betterErrorString.should.containEql("test-bettererrors");
//betterErrorString.should.not.include("undefined");

@@ -35,5 +35,5 @@ }

betterErrorString.should.include("true");
betterErrorString.should.include("false");
betterErrorString.should.include("==");
betterErrorString.should.containEql("true");
betterErrorString.should.containEql("false");
betterErrorString.should.containEql("==");

@@ -73,9 +73,9 @@ test.done();

var betterErrorString = betterErrorStringFromError(error);
betterErrorString.should.not.include("AssertionError");
betterErrorString.should.include("Error");
betterErrorString.should.include("test error");
betterErrorString.should.include("test-bettererrors");
betterErrorString.should.not.include("undefined");
betterErrorString.should.not.containEql("AssertionError");
betterErrorString.should.containEql("Error");
betterErrorString.should.containEql("test error");
betterErrorString.should.containEql("test-bettererrors");
betterErrorString.should.not.containEql("undefined");
test.done();
}
};

Sorry, the diff of this file is not supported yet

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