Skip to content

Commit 98c1782

Browse files
committed
cleanup
1 parent d6ecb7a commit 98c1782

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
- name: 🧪 Run Playwright Tests for ${{ matrix.e2e_package }}
135135
run: |
136136
echo "🎬 Running Playwright tests for ${{ matrix.e2e_package }}..."
137-
pnpm --filter ${{ matrix.e2e_package }} test:debug
137+
pnpm --filter ${{ matrix.e2e_package }} test
138138
shell: bash
139139

140140
- name: 🛑 Stop App

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"test:watch": "turbo run test:watch --ui=tui --continue",
3131
"test:coverage": "turbo run test:coverage --parallel --log-order=grouped --continue",
3232
"test:coverage:watch": "turbo run test:coverage:watch --ui=tui --continue",
33-
"e2e": "npx playwright test packages/e2e-frontend --config=packages/e2e-frontend/playwright.config.ts",
34-
"e2e:headed": "npx playwright test packages/e2e-frontend --config=packages/e2e-frontend/playwright.config.ts --headed",
35-
"e2e:ui": "npx playwright test packages/e2e-frontend --config=packages/e2e-frontend/playwright.config.ts --ui"
33+
"e2e": "turbo run test --filter='e2e-*' --parallel --log-order=grouped",
34+
"e2e:headed": "turbo run test:headed --filter='e2e-*' --parallel --log-order=grouped",
35+
"e2e:ui": "turbo run test:ui --filter='e2e-*' --parallel --log-order=grouped"
3636
},
3737
"devDependencies": {
3838
"@actions/core": "1.11.1",

0 commit comments

Comments
 (0)