Adding bundle tests to travis ci

This commit is contained in:
Justin 2018-05-09 21:24:00 -04:00
parent d48e964d55
commit 6f88262eed
2 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@ cache:
- "node_modules"
script: npm run test:infrastructure
script: npm run test:bundles
jobs:
include:

View File

@ -12,6 +12,7 @@
"build:es5": "babel src -d dist/es5 --config-file=./.babelrc-es5",
"build": "npm run build:clean && npm run build:es6 && npm run build:es5",
"lint": "node_modules/.bin/eslint ./src ./tests",
"test:bundles": "jest tests/bundles; exit 0",
"test:infrastructure": "jest tests/infrastructure; exit 0",
"test:services": "jest tests/services; exit 0",
"test": "jest && codecov",