From 724361af6ab7e5d49c73a01aed0f5bf02b003b2b Mon Sep 17 00:00:00 2001 From: Pat Cavit Date: Thu, 19 May 2016 10:57:17 -0700 Subject: [PATCH] Filter out util dirs from istanbul coverage reports (#1055) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index aa9d4544..868f8592 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "build": "node bundler/bundler", "test": "node ospec/bin/ospec", - "cover": "istanbul cover --print both ospec/bin/ospec" + "cover": "istanbul cover --print both -x \"**/ospec/**\" -x \"**/test-utils/**\" ospec/bin/ospec" }, "author": "Leo Horie", "license": "MIT",