aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/e2e/local.sh
blob: e8db2e808464d9a3f882fc469e9a47893a0d4de7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -eu

npm run clean:server:test

(
    cd client
    npm run webpack -- --config webpack/webpack.video-embed.js --mode development
)

npm run concurrently -- -k -s first \
    "cd client && npm run ng -- e2e --port 3333 -c local" \
    "NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" } }' node dist/server"