diff options
-rw-r--r-- | circleci.yml | 2 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/circleci.yml b/circleci.yml index fd01a63e9..7a97d756c 100644 --- a/circleci.yml +++ b/circleci.yml @@ -1,3 +1,3 @@ test: override: - - npm run coverage + - npm run test:coverage diff --git a/package.json b/package.json index 20fa4a4d3..d67890d84 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "build": "npm run clean && run-p build:*", "lint": "tslint src/ts/**/*", "test": "run-s clean build:commonjs && mocha lib/test/**/*.js", - "coverage": "nyc npm run test --all" + "test:coverage": "nyc npm run test --all" }, "repository": { "type": "git", |