Skip to content

Commit

Permalink
Use new port for e2e #10706
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerKiKi committed Sep 9, 2024
1 parent 4f57516 commit c61e58d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const config: PlaywrightTestConfig = {
testDir: './e2e/',
outputDir: __dirname + '/logs/tests/e2e/',
use: {
baseURL: process.env.E2E_BASE_URL ?? 'http://localhost:4200/',
baseURL: process.env.E2E_BASE_URL ?? 'http://localhost:4212/',
headless: true,
viewport: {width: 1280, height: 720},
ignoreHTTPSErrors: true,
Expand All @@ -19,7 +19,7 @@ const config: PlaywrightTestConfig = {
},
webServer: {
command: 'yarn dev',
port: 4200,
port: 4212,
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,
},
Expand Down

0 comments on commit c61e58d

Please sign in to comment.