aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/e2e/local.sh
blob: bbbdb5f0bb53465d667d7d8455633c653e2d2c13 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh

set -eu

npm run clean:server:test

npm run concurrently -- -k -s first \
    "cd client/e2e && ../node_modules/.bin/wdio run ./wdio.local.conf.ts" \
    "NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warn\" }, \"signup\": { \"enabled\": false } }' node dist/server"