mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
5 lines
151 B
TypeScript
5 lines
151 B
TypeScript
export const DEFAULT_SUITE_TIMEOUT = 120_000
|
|
|
|
export function setDefaultSuiteTimeout(context: Mocha.Suite) {
|
|
context.timeout(DEFAULT_SUITE_TIMEOUT)
|
|
}
|