Skip to content

Commit

Permalink
tests: attempt to fix test passing locally but not in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-winberry committed Feb 12, 2025
1 parent a787cc2 commit 07ac6c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# testing
/coverage
/test-results
/playwright-report

# next.js
/.next/
Expand Down
5 changes: 5 additions & 0 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@ export default defineConfig({
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,
},

reporter: [
['html', { outputFolder: 'playwright-report' }],
['json', { outputFile: 'playwright-report/report.json' }],
],
});

0 comments on commit 07ac6c2

Please sign in to comment.