From 38c4341f45baba673fa2285aa0258008e7bd1a7d Mon Sep 17 00:00:00 2001 From: Abhay Fernandes Date: Mon, 2 Sep 2024 11:14:13 -0400 Subject: [PATCH] update url for playwright test --- .github/workflows/playwright.yml | 2 +- playwright.config.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 1420bc2..3697830 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -1,7 +1,7 @@ # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs -name: Playwright Tests +name: playwright on: push: diff --git a/playwright.config.ts b/playwright.config.ts index faa3117..6ca511a 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -72,6 +72,7 @@ export default defineConfig({ /* Run your local dev server before starting the tests */ webServer: { command: 'npm run start', + url: "http://127.0.0.1:4321", reuseExistingServer: !process.env.CI, }, });