]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - scripts/e2e/local.sh
Fix local e2e tests
[github/Chocobozzz/PeerTube.git] / scripts / e2e / local.sh
... / ...
CommitLineData
1#!/bin/sh
2
3set -eu
4
5npm run clean:server:test
6
7(
8 cd client
9 npm run webdriver-manager -- update
10 npm run webpack -- --config webpack/webpack.video-embed.js --mode development
11)
12
13npm run concurrently -- -k -s first \
14 "cd client && npm run ng -- e2e --port 3333 -c local" \
15 "NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" }, \"signup\": { \"enabled\": false } }' node dist/server"