From f3a31b9a4cebf8db3836d6e744a531a32923d592 Mon Sep 17 00:00:00 2001 From: Roman Shtylman Date: Mon, 18 Feb 2013 22:04:43 -0500 Subject: [PATCH] add test coverage via istanbul --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 10c292c..7ce8d5f 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,8 @@ }, "devDependencies" : { - "mocha": "1.8.1" + "mocha": "1.8.1", + "istanbul": "0.1.30" }, "testling": { @@ -29,6 +30,6 @@ }, "scripts": { - "test": "mocha test/*.js" + "test": "istanbul test ./node_modules/.bin/_mocha -- --reporter list test/*.js" } }