Skip to content

Commit 2265fe7

Browse files
authored
Merge pull request #96 from sparksuite/increase-test-timeouts
Increase test timeouts
2 parents 3825d5b + 69e112f commit 2265fe7

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

jest.config.ts

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

1617
export default config;

test-projects/browser/jest.config.ts

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

1314
export default config;

test-projects/node/jest.config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const config: Config.InitialOptions = {
55
verbose: true,
66
preset: 'ts-jest',
77
testMatch: ['<rootDir>/*.test.ts'],
8+
testTimeout: 15000,
89
};
910

1011
export default config;

0 commit comments

Comments
 (0)