Skip to content

Commit

Permalink
fix: increase timeout for localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
maiconcarraro committed Oct 8, 2024
1 parent be85d1d commit a88a432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/pwabuilder/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: './tests',
/* Maximum time one test can run for. */
timeout: 30 * 1000,
timeout: (process.env.CI ? 30 : 50) * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
Expand Down

0 comments on commit a88a432

Please sign in to comment.