diff --git a/playwright/fixtures/widget-user.ts b/playwright/fixtures/widget-user.ts index 8089c9de..484c1712 100644 --- a/playwright/fixtures/widget-user.ts +++ b/playwright/fixtures/widget-user.ts @@ -76,7 +76,7 @@ const setDevToolElementCallDevUrl = process.env.USE_DOCKER "Developer.elementCallUrl", null, "device", - "http://localhost:8080/room", + "http://localhost:3000/room", ); }); } diff --git a/scripts/playwright-webserver-command.sh b/scripts/playwright-webserver-command.sh index 8c00909b..c6015fef 100755 --- a/scripts/playwright-webserver-command.sh +++ b/scripts/playwright-webserver-command.sh @@ -3,7 +3,7 @@ if [ -n "$USE_DOCKER" ]; then set -ex yarn build docker build -t element-call:testing . - exec docker run --rm --name element-call-testing -p 8080:8080 -v ./config/config.devenv.json:/app/config.json:ro,Z element-call:testing + exec docker run --rm --name element-call-testing -p 3000:3000 -v ./config/config.devenv.json:/app/config.json:ro,Z element-call:testing else cp config/config.devenv.json public/config.json exec yarn dev