We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86bae1b commit 86730d2Copy full SHA for 86730d2
.travis.yml
@@ -22,5 +22,7 @@ install:
22
- npm install
23
script:
24
- npm run build -- --noEmit
25
- - npm test
+ - npm test:ci
26
- if [[ $TRAVIS_PULL_REQUEST = "false" ]] ; then cat ./coverage/lcov.info | codacy-coverage --language=typescript; fi
27
+after_failure:
28
+ - tail -n 2000 instamancer_tests.log
package.json
@@ -21,6 +21,7 @@
21
"build": "tsc",
"prepack": "tsc --declaration",
"test": "jest",
+ "test:ci": "jest --bail",
"lint": "tslint -p tsconfig.json -p tests/tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --write \"{src,tests}/**/*.ts\"",
0 commit comments