From 99342e073f1a7231adc3f21cc8af7f3dd1686125 Mon Sep 17 00:00:00 2001 From: domenic Date: Mon, 14 May 2012 19:15:28 -0400 Subject: [PATCH] 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. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1e7eb15..424e6ea 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "node": ">=0.1.97" }, - "scripts": { "test": "./node_modules/nodeunit/bin/nodeunit tests/runner.js" }, + "scripts": { "test": "nodeunit tests/runner.js" }, "licenses": [{ "type" : "MIT",