mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 09:49:20 +02:00
9 lines
312 B
Bash
Executable file
9 lines
312 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
npm run clean:server:test
|
|
|
|
npm run concurrently -- -k -s first \
|
|
"cd client/e2e && ../node_modules/.bin/wdio run ./wdio.browserstack.conf.ts" \
|
|
"NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warn\" }, \"signup\": { \"enabled\": false } }' node dist/server"
|