We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 515798f commit c2f97e5Copy full SHA for c2f97e5
playwright.config.ts
@@ -24,6 +24,7 @@ import { devices } from '@playwright/test';
24
*/
25
const config: PlaywrightTestConfig = {
26
testDir: './examples',
27
+ testMatch: /.*\/tests\/[a-z0-9\-\.]+\.test\.(js|mjs|ts)/,
28
29
webServer: {
30
command: 'npm run start',
@@ -39,7 +40,7 @@ const config: PlaywrightTestConfig = {
39
40
* Maximum time expect() should wait for the condition to be met.
41
* For example in `await expect(locator).toHaveText();`
42
- timeout: 5000
43
+ timeout: 2500
44
},
45
/* Run tests in files in parallel */
46
fullyParallel: true,
0 commit comments