how to run parallel test

This commit is contained in:
Girish Ramakrishnan 2015-11-19 11:00:35 -08:00
parent 06e9c931df
commit fa39628baa
1 changed files with 8 additions and 2 deletions

View File

@ -1,8 +1,14 @@
To run manually on CI:
### To run manually on CI
cd ~/app
export BOX_VERSION=<version_to_test>
pm2-run --ecosystem ../ecosystem.json --env staging --cmd "npm test"
To run specific test on CI:
OR
pm2-run --ecosystem ../ecosystem.json --env staging --cmd ./parallel_test.sh
### To run specific test on CI
cd ~/app
export BOX_VERSION=<version_to_test>
pm2-run --ecosystem ../ecosystem.json --env staging --cmd "DEBUG=superagent-sync,e2e:* DEBUG_COLORS=true ./node_modules/.bin/mocha --bail test/new-user-test.js"