feat(tests): Bootstrap only on ci tests

This commit is contained in:
Bouncey
2018-10-07 09:12:01 +01:00
committed by mrugesh mohapatra
parent f8a680caaa
commit c3fad016ab
2 changed files with 3 additions and 2 deletions

View File

@ -24,4 +24,4 @@ before_script:
- git config --global user.name "CamperBot"
script:
- npm run test
- npm run test-ci

View File

@ -6,9 +6,10 @@
"develop": "npm-run-all -s ensure-env start-develop",
"ensure-env": "node ./tools/scripts/ensure-env.js",
"lint": "echo 'Warning: TODO - Define Linting.'",
"pretest": "npm-run-all -s lint bootstrap",
"pretest-ci": "npm-run-all -s lint bootstrap",
"seed": "node seed/seedChallenges",
"test": "npm-run-all -p test:*",
"test-ci": "npm test",
"test:client": "cd ./client && npm test && cd ../",
"test:curriculum": "echo 'Warning: TODO - Define Testing.'",
"test:server": "echo 'Warning: TODO - Define Testing.'",