Skip to content

Commit

Permalink
Attempt to fix report.json path
Browse files Browse the repository at this point in the history
  • Loading branch information
hirasso committed Nov 14, 2023
1 parent 88533a4 commit f15a501
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:

- uses: daun/playwright-report-summary@v2
with:
report-file: results.json
report-file: playwright-results.json
2 changes: 1 addition & 1 deletion tests/config/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default defineConfig({
maxFailures: process.env.CI ? 10 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: process.env.CI
? [['dot'], ['github'], ['json', { outputFile: '../../report.json' }]]
? [['dot'], ['github'], ['json', { outputFile: 'playwright-results.json' }]]
: [['list'], ['html', { outputFolder: '../reports/html', open: 'on-failure' }]],

expect: {
Expand Down

0 comments on commit f15a501

Please sign in to comment.