2018-05-16 12:59:21 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
npm run clean:server:test
|
|
|
|
|
2018-06-07 09:50:33 -05:00
|
|
|
npm run concurrently -- -k -s first \
|
2021-09-02 01:57:59 -05:00
|
|
|
"cd client/e2e && ../node_modules/.bin/wdio run ./wdio.browserstack.conf.ts" \
|
2021-09-03 03:27:04 -05:00
|
|
|
"NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"rates_limit\": { \"api\": { \"max\": 5000 }, \"login\": { \"max\": 5000 } }, \"log\": { \"level\": \"warn\" }, \"signup\": { \"enabled\": false } }' node dist/server"
|