We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c4033f commit 53876faCopy full SHA for 53876fa
.github/workflows/tests.yml
@@ -13,7 +13,7 @@ jobs:
13
- name: Prepare .env file
14
run: |
15
rm -f .env && touch .env
16
- echo "REACT_APP_API_BASE_URL=fake123" >> .env
+ echo "REACT_APP_API_BASE_URL=https://example.com" >> .env
17
echo "VITE_SERVICE_ID=123fAkE" >> .env
18
echo "VITE_TEMPLATE_ID=123fAkE" >> .env
19
echo "VITE_PUBLIC_ID=123fAkE" >> .env
playwright.config.cjs
@@ -70,7 +70,7 @@ module.exports = defineConfig({
70
71
/* Run your local dev server before starting the tests */
72
webServer: {
73
- command: "bun run dev",
+ command: "npm run dev",
74
url: "http://localhost:5173",
75
reuseExistingServer: !process.env.CI,
76
},
0 commit comments