1
0
Fork 0
peertube/scripts/e2e/index.sh

15 lines
381 B
Bash
Raw Normal View History

2018-05-16 17:59:21 +00:00
#!/bin/sh
set -eu
npm run clean:server:test
2018-05-17 08:55:01 +00:00
(
cd client
2018-05-22 14:02:29 +00:00
npm run webpack -- --config webpack/webpack.video-embed.js --mode development
2018-05-17 08:55:01 +00:00
)
2018-06-07 14:50:33 +00:00
npm run concurrently -- -k -s first \
2018-05-19 11:58:29 +00:00
"cd client && npm run ng -- e2e --port 3333" \
2021-05-14 12:17:53 +00:00
"NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warn\" }, \"signup\": { \"enabled\": false } }' node dist/server"