]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - scripts/e2e/local.sh
Fix NSFW filter and add tests
[github/Chocobozzz/PeerTube.git] / scripts / e2e / local.sh
... / ...
CommitLineData
1#!/bin/sh
2
3set -eu
4
5npm run clean:server:test
6
7config="{"
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"