aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/e2e/local.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/e2e/local.sh')
-rwxr-xr-xscripts/e2e/local.sh14
1 files changed, 2 insertions, 12 deletions
diff --git a/scripts/e2e/local.sh b/scripts/e2e/local.sh
index fe8b7f559..0e0368c52 100755
--- a/scripts/e2e/local.sh
+++ b/scripts/e2e/local.sh
@@ -2,16 +2,6 @@
2 2
3set -eu 3set -eu
4 4
5npm run clean:server:test 5cd client/e2e
6 6
7config="{" 7../node_modules/.bin/wdio run ./wdio.local.conf.ts
8config+=" \"rates_limit\": { \"api\": { \"max\": 5000 }, \"login\": { \"max\": 5000 } }"
9config+=", \"log\": { \"level\": \"warn\" }"
10config+=", \"signup\": { \"enabled\": false }"
11config+=", \"transcoding\": { \"enabled\": false }"
12config+="}"
13
14npm run concurrently -- -k -s first \
15 "cd client/e2e && ../node_modules/.bin/wdio run ./wdio.local.conf.ts" \
16 "NODE_ENV=test NODE_CONFIG='$config' NODE_APP_INSTANCE=1 node dist/server" \
17 "NODE_ENV=test NODE_CONFIG='$config' NODE_APP_INSTANCE=2 node dist/server"