Skip to content

Commit 9f2cb69

Browse files
build(script): rename test script
1 parent 6ccc8b9 commit 9f2cb69

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ before_script: npx greenkeeper-lockfile-update
2828

2929
script:
3030
- npm run lint:ci
31-
- npm run test:ci
31+
- npm run test:coverage
3232
- npm run build
3333
- npm run build:docs
3434

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
"deploy-docs": "ts-node tools/gh-pages-publish",
3636
"lint": "tslint --project tsconfig.json -t codeFrame --fix",
3737
"lint:ci": "tslint --project tsconfig.json -t codeFrame",
38-
"prepush": "npm run test:prod && npm run build",
38+
"prepush": "npm run test:coverage && npm run build",
3939
"report-coverage": "cat ./coverage/lcov.info | coveralls",
4040
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
4141
"test": "jest",
42-
"test:ci": "npm run test -- --coverage --no-cache",
42+
"test:coverage": "npm run test -- --coverage --no-cache",
4343
"test:watch": "jest --watch",
4444
"prettier": "prettier --write --config ./.prettierrc.yml '{src,test}/**/*.ts'"
4545
},

0 commit comments

Comments
 (0)