We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64c9374 commit 3161de6Copy full SHA for 3161de6
1 file changed
src/config/config.ts
@@ -20,7 +20,7 @@ export const loadConfig = async (): Promise<Required<TestConfig>> => {
20
loadedConfig = {
21
testMatch: userConfig.testMatch ?? "**/*.@(spec|test).?(c|m)[jt]s?(x)",
22
expect: {
23
- timeout: userConfig.timeout ?? 5_000,
+ timeout: userConfig.expect?.timeout ?? 5_000,
24
},
25
globalTimeout: userConfig.globalTimeout ?? 0,
26
retries: userConfig.retries ?? 0,
0 commit comments