mocha-typescript
Advanced tools
Comparing version 1.1.10 to 1.1.11
@@ -35,3 +35,3 @@ #!/usr/bin/env node | ||
demand: false, | ||
default: "./node_modules/mocha/bin/_mocha", | ||
default: "./node_modules/mocha/bin/mocha", | ||
describe: "Path to executable mocha, by default points to mocha installed as dev dependency.", | ||
@@ -93,3 +93,3 @@ type: "string" | ||
} | ||
mochap = spawn("node", [argv.mocha].concat(mocha_options)); | ||
mochap = spawn(argv.mocha, mocha_options); | ||
let source = mochap; | ||
@@ -119,3 +119,3 @@ mochap.on("close", code => { | ||
} | ||
var tscp = spawn("node", [argv.tsc, "-p", argv.project, "-w"]); | ||
var tscp = spawn(argv.tsc, ["-p", argv.project, "-w"]); | ||
var tscl = readline.createInterface({ input: tscp.stdout }); | ||
@@ -122,0 +122,0 @@ tscl.on("line", line => { |
{ | ||
"name": "mocha-typescript", | ||
"version": "1.1.10", | ||
"version": "1.1.11", | ||
"description": "TypeScript decorators based wrapper over mocha's interface", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
99334