PeerTube/scripts/e2e/local.sh

17 lines
440 B
Bash
Raw Normal View History

2018-05-16 19:59:21 +02:00
#!/bin/sh
set -eu
npm run clean:server:test
2018-05-17 10:55:01 +02:00
(
cd client
npm run webdriver-manager update
2018-05-22 16:02:29 +02:00
npm run webpack -- --config webpack/webpack.video-embed.js --mode development
2018-05-17 10:55:01 +02:00
)
2018-06-07 16:50:33 +02:00
npm run concurrently -- -k -s first \
2018-10-01 13:40:21 +02:00
"cd client && npm run webdriver-manager start" \
"cd client && npm run ng -- e2e --port 3333 -c local" \
2018-05-17 10:55:01 +02:00
"NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" } }' npm start"