Skip to content

Commit cd3988e

Browse files
committed
ci: Exit early when running TravisCI tests
1 parent fff1dfe commit cd3988e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.travis.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,4 @@ addons:
1313
chrome: stable
1414
sauce_connect: true
1515
script:
16-
- npm run test:size
17-
- npm run test
18-
- npm run test:ci
16+
- npm run test && npm run test:ci

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"lint": "eslint .",
1919
"precommit": "lint-staged",
2020
"publish": "npm run test && grunt publish",
21-
"test": "npm run lint && grunt build.test && npm run test:unit && npm run test:integration && npm run test:typescript",
21+
"test": "npm run lint && npm run test:size && grunt build.test && npm run test:unit && npm run test:integration && npm run test:typescript",
2222
"test:unit": "mocha-chrome test/index.html",
2323
"test:integration": "mocha-chrome test/integration/index.html --chrome-flags '[\"--disable-web-security\"]' --ignore-resource-errors --ignore-exceptions",
2424
"test:typescript": "tsc --noEmit --noImplicitAny typescript/raven-tests.ts",

0 commit comments

Comments
 (0)