Comparing version 0.7.4 to 0.7.5
@@ -15,3 +15,3 @@ var QUnit = require('qunitjs'), | ||
var options = JSON.parse(process.argv[2]), | ||
var options = JSON.parse(process.argv.pop()), | ||
currentModule = path.basename(options.code.path, '.js'), | ||
@@ -18,0 +18,0 @@ currentTest; |
@@ -62,8 +62,6 @@ var fs = require('fs'), | ||
var pingCheckTimeoutId; | ||
var argv = process.argv.slice(); | ||
child = cp.fork( | ||
__dirname + '/child.js', | ||
[JSON.stringify(opts)], | ||
{env: process.env} | ||
); | ||
argv.push(JSON.stringify(opts)); | ||
child = cp.fork(__dirname + '/child.js', argv, {env: process.env}); | ||
@@ -70,0 +68,0 @@ function kill() { |
{ | ||
"name": "qunit", | ||
"description": "QUnit testing framework for nodejs", | ||
"version": "0.7.4", | ||
"version": "0.7.5", | ||
"author": "Oleg Slobodskoi <oleg008@gmail.com>", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
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
44295
1154