From 6f88262eed9bcc5582fdee0e0a10dfea3c83cdee Mon Sep 17 00:00:00 2001 From: Justin Date: Wed, 9 May 2018 21:24:00 -0400 Subject: [PATCH] Adding bundle tests to travis ci --- .travis.yml | 1 + package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 79f3de92..85d917e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@ cache: - "node_modules" script: npm run test:infrastructure +script: npm run test:bundles jobs: include: diff --git a/package.json b/package.json index 9cc56ee4..eb6673bc 100644 --- a/package.json +++ b/package.json @@ -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",