From 1418f796a1270c03ae77be67d036a74025a77523 Mon Sep 17 00:00:00 2001 From: vighnesh153 Date: Sun, 10 Sep 2023 20:17:44 +0530 Subject: [PATCH] fix: update astro's default port --- .../nodejs-apps/vighnesh153-astro-svelte/playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodejs-tools/nodejs-apps/vighnesh153-astro-svelte/playwright.config.ts b/nodejs-tools/nodejs-apps/vighnesh153-astro-svelte/playwright.config.ts index 53e8ad52..ecec951d 100644 --- a/nodejs-tools/nodejs-apps/vighnesh153-astro-svelte/playwright.config.ts +++ b/nodejs-tools/nodejs-apps/vighnesh153-astro-svelte/playwright.config.ts @@ -17,13 +17,13 @@ export default defineConfig({ workers: process.env.CI ? 1 : undefined, reporter: 'html', use: { - baseURL: 'http://localhost:3000', + baseURL: 'http://localhost:4321', trace: 'on-first-retry', }, /* Run your local dev server before starting the tests */ webServer: { command: 'npm run dev', - url: 'http://localhost:3000', + url: 'http://localhost:4321', reuseExistingServer: !process.env.CI, },