aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-08-30 16:24:25 +0200
committerChocobozzz <me@florianbigard.com>2021-09-01 15:06:46 +0200
commit3419e0e1fe8e48a08b63ca0ded31087f913eb2b6 (patch)
tree63ac7190b79194e93aec9bbfd3c336e60f469e9d /scripts
parent2a4c9669d2d6ac6cd4ae43544698f826ae98080f (diff)
downloadPeerTube-3419e0e1fe8e48a08b63ca0ded31087f913eb2b6.tar.gz
PeerTube-3419e0e1fe8e48a08b63ca0ded31087f913eb2b6.tar.zst
PeerTube-3419e0e1fe8e48a08b63ca0ded31087f913eb2b6.zip
Migrate to webdriverio
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/e2e/local.sh8
1 files changed, 1 insertions, 7 deletions
diff --git a/scripts/e2e/local.sh b/scripts/e2e/local.sh
index 469f2eb5e..bbbdb5f0b 100755
--- a/scripts/e2e/local.sh
+++ b/scripts/e2e/local.sh
@@ -4,12 +4,6 @@ set -eu
4 4
5npm run clean:server:test 5npm run clean:server:test
6 6
7(
8 cd client
9 npm run webdriver-manager -- update
10 npm run webpack -- --config webpack/webpack.video-embed.js --mode development
11)
12
13npm run concurrently -- -k -s first \ 7npm run concurrently -- -k -s first \
14 "cd client && npm run ng -- e2e --port 3333 -c local" \ 8 "cd client/e2e && ../node_modules/.bin/wdio run ./wdio.local.conf.ts" \
15 "NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warn\" }, \"signup\": { \"enabled\": false } }' node dist/server" 9 "NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warn\" }, \"signup\": { \"enabled\": false } }' node dist/server"