chore: split ci test scripts

This commit is contained in:
Shawn Erquhart
2019-03-28 16:09:28 -04:00
parent 35088db1f3
commit 166141102b
3 changed files with 39 additions and 25 deletions

View File

@ -13,8 +13,10 @@
"clean": "rimraf packages/*/dist dev-test/dist",
"clean:lerna": "lerna clean --yes",
"reset": "run-s clean clean:lerna",
"test": "run-s clean lint test:unit test:e2e",
"test:ci": "run-s clean lint-quiet test:unit test:e2e:ci",
"test": "run-s clean lint test:unit",
"test:ci": "run-s clean lint-quiet test:unit",
"test:all": "run-s test test:e2e",
"test:all:ci": "run-s test:ci test:e2e:ci",
"test:unit": "cross-env NODE_ENV=test jest --no-cache",
"test:e2e": "run-s build:demo test:e2e:run",
"test:e2e:ci": "run-s build:demo test:e2e:run-ci",