diff --git a/.circleci/config.yml b/.circleci/config.yml index f4dca5c..3feab76 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,10 +29,10 @@ jobs: # Test - run: - name: Test - command: yarn test + name: Unit Tests + command: yarn test:unit --coverage && yarn coverage - # Coverage + # Test - run: - name: Coverage - command: yarn codecov + name: E2E Tests + command: yarn test:e2e diff --git a/package.json b/package.json index 38c7d62..0225414 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "build": "yarn build:other && yarn build:es", "build:es": "rimraf es && babel src --env-name es --out-dir es --ignore 'src/browser.js'", "build:other": "rimraf lib && rollup -c scripts/rollup.config.js", - "codecov": "codecov", + "coverage": "codecov", "predeploy": "git checkout master && git pull -r", "deploy": "npm version", "postdeploy": "git push origin master --follow-tags && npm run release",