This commit is contained in:
Arnaud 2024-10-11 15:33:15 +02:00
parent 231cc090c8
commit 173e78b264
No known key found for this signature in database
GPG Key ID: 69D6CE281FCAE663

View File

@ -30,7 +30,7 @@ export default defineConfig({
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: 'http://127.0.0.1:5173',
baseURL: 'http://127.0.0.1:5174',
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
@ -77,7 +77,7 @@ export default defineConfig({
/* Run your local dev server before starting the tests */
webServer: {
command: 'npm run dev',
url: 'http://127.0.0.1:5173',
url: 'http://127.0.0.1:5174',
reuseExistingServer: !process.env.CI,
},
});