2018-05-16 13:59:21 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
npm run clean:server:test
|
|
|
|
|
2018-06-07 10:50:33 -04:00
|
|
|
npm run concurrently -- -k -s first \
|
2021-08-30 10:24:25 -04:00
|
|
|
"cd client/e2e && ../node_modules/.bin/wdio run ./wdio.local.conf.ts" \
|
2021-05-14 08:17:53 -04:00
|
|
|
"NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warn\" }, \"signup\": { \"enabled\": false } }' node dist/server"
|