From 41704791ea2020f38d2c169775c93f033f17383e Mon Sep 17 00:00:00 2001 From: ColemanRoo Date: Mon, 10 Feb 2025 16:00:25 -0600 Subject: [PATCH] adding comment on long timeout --- src/test/suite/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/suite/index.ts b/src/test/suite/index.ts index 1c850fc100..ffb8de7473 100644 --- a/src/test/suite/index.ts +++ b/src/test/suite/index.ts @@ -16,7 +16,7 @@ export async function run(): Promise { // Create the mocha test const mocha = new Mocha({ ui: "tdd", - timeout: 600000, + timeout: 600000, // 10 minutes to compensate for time communicating with LLM while running in GHA }) const testsRoot = path.resolve(__dirname, "..")