From a86fb021eab5c9a1ab04cd0fe5ba034d837e1dd5 Mon Sep 17 00:00:00 2001 From: aewering Date: Mon, 19 Feb 2024 17:55:20 +0100 Subject: [PATCH] raise repl timeout --- tests/repl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/repl.ts b/tests/repl.ts index 7f94d9f..e987130 100644 --- a/tests/repl.ts +++ b/tests/repl.ts @@ -89,7 +89,7 @@ export const startRepl = async (): Promise => { throw new Error(err); }), // timeout if repl does not respond - waitForMs(2000).then(() => { + waitForMs(5000).then(() => { throw new Error( `Timed out when waiting for output of command '${input}'` );