Skip to content

Commit

Permalink
Change Playwright config for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RReverser committed Dec 27, 2023
1 parent ca7c6a0 commit ce74ed9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/playwright.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ const url = `http://127.0.0.1:3000/`;
export default defineConfig({
fullyParallel: true,
forbidOnly: !!process.env.CI,
quiet: false,
reporter: process.env.CI ? 'github' : 'list',
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
timeout: 10 * 1000,
webServer: {
command: 'npx serve',
Expand Down

0 comments on commit ce74ed9

Please sign in to comment.