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.11 to 0.5.12

10

lib/child.js

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

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

@@ -21,0 +25,0 @@

@@ -98,4 +98,4 @@ var fs = require('fs'),

if (file.path.charAt(0) === '.') {
file.path = path.join(process.cwd(), file.path);
if (file.path.charAt(0) != '/') {
file.path = path.resolve(process.cwd(), file.path);
}

@@ -102,0 +102,0 @@

{
"name": "qunit",
"description": "QUnit testing framework for nodejs",
"version": "0.5.11",
"version": "0.5.12",
"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