Skip to content

Commit 69e112f

Browse files
committed
increased timeout to 15 seconds
1 parent f903844 commit 69e112f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const config: Config.InitialOptions = {
1111
resolver: 'jest-ts-webcompat-resolver',
1212
testMatch: ['<rootDir>/src/**/*.test.ts'],
1313
testEnvironment: 'node',
14-
testTimeout: 11000,
14+
testTimeout: 15000,
1515
};
1616

1717
export default config;

test-projects/browser/jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const config: Config.InitialOptions = merge.recursive(presetTSJest, presetJestPu
88
displayName: 'Browser environment',
99
testMatch: ['<rootDir>/*.test.ts'],
1010
verbose: true,
11-
testTimeout: 11000,
11+
testTimeout: 15000,
1212
});
1313

1414
export default config;

test-projects/node/jest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const config: Config.InitialOptions = {
55
verbose: true,
66
preset: 'ts-jest',
77
testMatch: ['<rootDir>/*.test.ts'],
8-
testTimeout: 11000,
8+
testTimeout: 15000,
99
};
1010

1111
export default config;

0 commit comments

Comments
 (0)