]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/e2e.sh
Make it possible to change path used by upgrade.sh on command line
[github/Chocobozzz/PeerTube.git] / scripts / e2e.sh
1 #!/bin/sh
2
3 set -eu
4
5 npm run clean:server:test
6
7 (
8 cd client
9 npm run webdriver-manager update
10 )
11
12 concurrently -k -s first \
13 "cd client && npm run ng -- e2e" \
14 "NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" } }' npm start"
15