From 070a92a0c36c312193bc5eead5aadcae0facf3c8 Mon Sep 17 00:00:00 2001 From: Phil Pluckthun Date: Sat, 17 Dec 2016 20:40:34 +0000 Subject: [PATCH] Add "--no-cache" option to test:cov task The task doesn't work without the afromentioned option. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index dc6c38b..7b4c0a6 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "scripts": { "test": "BABEL_ENV=cjs jest --config .jestrc.json", "test:watch": "npm test -- --watch", - "test:cov": "npm test -- --coverage", + "test:cov": "npm test -- --coverage --no-cache", "lint": "tslint -c tslint.json src/**/*.ts", "clean": "rm -rf es lib", "build:es": "tsc -m es2015 --outDir es",