Skip to content

Commit

Permalink
Run playwright sequentially and remove env var echo
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Dec 8, 2024
1 parent 0cbbf98 commit 133a1cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/pr_ci_playwright_e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ jobs:
with:
env-file: .env.dev

- name: Check Env Variables
run: echo $VITE_FRONTEND_URL

- name: Clean Yarn Cache
working-directory: ./frontend
run: sudo yarn cache clean
Expand Down
4 changes: 2 additions & 2 deletions frontend/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const ENV = (process.env.TEST_ENV || "local") as keyof typeof environments;
export default defineConfig({
testDir: "./test-e2e/specs",
/* Run tests in files in parallel. */
fullyParallel: true,
fullyParallel: false,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only. */
Expand Down Expand Up @@ -76,7 +76,7 @@ export default defineConfig({
use: { ...devices["Galaxy S9+"], isMobile: true },
},
{
name: "Mobile iPad",
name: "Mobile iPad Portrait",
use: { ...devices["iPad (gen 7)"], isMobile: true },
},
{
Expand Down

0 comments on commit 133a1cd

Please sign in to comment.