Skip to content

Commit 7005646

Browse files
authored
chore(tests): Use the default Playwright timeout. (#6870)
1 parent da8acc6 commit 7005646

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

packages/integration-tests/playwright.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import type { PlaywrightTestConfig } from '@playwright/test';
22

33
const config: PlaywrightTestConfig = {
44
retries: 2,
5-
timeout: 12000,
65
workers: 3,
76
};
87
export default config;

packages/nextjs/playwright.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import * as path from 'path';
33

44
const config: PlaywrightTestConfig = {
55
retries: 0, // We do not accept flakes.
6-
timeout: 12000,
76
use: {
87
baseURL: 'http://localhost:3000',
98
},

packages/remix/playwright.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import type { PlaywrightTestConfig } from '@playwright/test';
22

33
const config: PlaywrightTestConfig = {
44
retries: 0,
5-
timeout: 12000,
65
use: {
76
baseURL: 'http://localhost:3000',
87
},

0 commit comments

Comments
 (0)