Browse Source

feat(testing): Trial with 3 workers

pull/3848/head
Muhammed Mustafa 2 years ago
parent
commit
0463b81d0e
  1. 2
      scripts/playwright/playwright.config.ts

2
scripts/playwright/playwright.config.ts

@ -13,7 +13,7 @@ import { devices } from '@playwright/test';
const config: PlaywrightTestConfig = {
testDir: './tests',
/* Maximum time one test can run for. */
timeout: 45 * 1000,
timeout: process.env.CI ? 80 * 1000 : 40 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.

Loading…
Cancel
Save