From 20dea5caac7344ae8467c240296e43dfd0590360 Mon Sep 17 00:00:00 2001 From: ColemanRoo Date: Mon, 10 Feb 2025 15:16:07 -0600 Subject: [PATCH] increase test 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 e05d0094d1..1c850fc100 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: 60000, + timeout: 600000, }) const testsRoot = path.resolve(__dirname, "..")