Skip to content

Commit fd0fedd

Browse files
committed
config update
1 parent 566e463 commit fd0fedd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/playwright-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
if: failure()
6161
run: |
6262
cd ./playwright
63-
npx playwright show-report --output=playwright-report
63+
npx playwright show-report
6464
6565
- name: Upload Playwright Test Report
6666
uses: actions/upload-artifact@v4

playwright/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default defineConfig({
66
forbidOnly: !!process.env.CI,
77
retries: process.env.CI ? 2 : 0,
88
workers: process.env.CI ? 4 : undefined,
9-
reporter: 'html',
9+
reporter: [['html', { open: 'never', outputFolder: './playwright/playwright-report/' }]],
1010
use: {
1111
baseURL: 'http://127.0.0.1:8080',
1212
trace: 'on-first-retry',

0 commit comments

Comments
 (0)