]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/e2e.sh
Add videos e2e tests
[github/Chocobozzz/PeerTube.git] / scripts / e2e.sh
CommitLineData
74af5a83
C
1#!/bin/sh
2
3set -eu
4
74af5a83
C
5npm run clean:server:test
6
5f92c4dc
C
7(
8 cd client
9 npm run webdriver-manager update
10)
11
74af5a83
C
12concurrently -k -s first \
13 "cd client && npm run ng -- e2e" \
5f92c4dc 14 "NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" } }' npm start"
74af5a83 15