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:
domenic 2012-05-14 19:15:28 -04:00
parent 2abdfaf40c
commit 99342e073f

View file

@ -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",