Updating test script to work on Windows.
npm had a bug a while ago where you needed to specify the full path for scripts. This is no longer the case. Using the command name instead of the full path allows `npm test` to work on Windows.
This commit is contained in:
parent
2abdfaf40c
commit
99342e073f
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@
|
||||||
"node": ">=0.1.97"
|
"node": ">=0.1.97"
|
||||||
},
|
},
|
||||||
|
|
||||||
"scripts": { "test": "./node_modules/nodeunit/bin/nodeunit tests/runner.js" },
|
"scripts": { "test": "nodeunit tests/runner.js" },
|
||||||
|
|
||||||
"licenses": [{
|
"licenses": [{
|
||||||
"type" : "MIT",
|
"type" : "MIT",
|
||||||
|
|
|
||||||
Reference in a new issue