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

qunit

Package Overview
Dependencies
Maintainers
1
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qunit - npm Package Compare versions

Comparing version 0.5.17 to 0.5.18

LICENSE

12

lib/child.js

@@ -17,9 +17,13 @@ var QUnit = require('../support/qunit/qunit/qunit.js'),

process.on('uncaughtException', function(err) {
process.send({event: 'uncaughtException'});
if (QUnit.config.current) {
QUnit.ok(false, 'Test threw unexpected exception: ' + err);
QUnit.ok(false, 'Test threw unexpected exception: ' + err.message);
QUnit.start();
} else {
throw err;
}
process.send({
event: 'uncaughtException',
data: {
message: err.message,
stack: err.stack
}
});
});

@@ -26,0 +30,0 @@

@@ -79,3 +79,3 @@ var fs = require('fs'),

} else if (msg.event === 'uncaughtException') {
callback(new Error('Uncaught exception in child process.'));
callback(_.extend(new Error, msg.data));
kill();

@@ -152,3 +152,3 @@ }

if (err) {
return callback(err);
return callback(err, log.stats());
}

@@ -155,0 +155,0 @@

{
"name": "qunit",
"description": "QUnit testing framework for nodejs",
"version": "0.5.17",
"version": "0.5.18",
"author": "Oleg Slobodskoi <oleg008@gmail.com>",

@@ -6,0 +6,0 @@ "contributors": [

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