diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bcc3dd15..09bbd390 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: - name: Prepare .env file run: | rm -f .env && touch .env - echo "REACT_APP_API_BASE_URL=fake123" >> .env + echo "REACT_APP_API_BASE_URL=https://example.com" >> .env echo "VITE_SERVICE_ID=123fAkE" >> .env echo "VITE_TEMPLATE_ID=123fAkE" >> .env echo "VITE_PUBLIC_ID=123fAkE" >> .env diff --git a/playwright.config.cjs b/playwright.config.cjs index 9dd0506d..bfd72048 100644 --- a/playwright.config.cjs +++ b/playwright.config.cjs @@ -70,7 +70,7 @@ module.exports = defineConfig({ /* Run your local dev server before starting the tests */ webServer: { - command: "bun run dev", + command: "npm run dev", url: "http://localhost:5173", reuseExistingServer: !process.env.CI, },