From e186129a7f9c0df0ad8f33a9c5dac1a59ed345ce Mon Sep 17 00:00:00 2001 From: TheAfroOfDoom Date: Mon, 20 May 2024 22:27:49 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20long=20timeout=20arg=20to?= =?UTF-8?q?=20unit=20test=20launch=20configuration=20-=20when=20you're=20d?= =?UTF-8?q?ebugging=20these,=20it's=20not=20unlikely=20you'd=20be=20in=20a?= =?UTF-8?q?=20test=20longer=20than=2030s=20(the=20default=20timeout)=20-?= =?UTF-8?q?=20new=20default=20is=20999999s=20(11.5=20days)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index cb4b95ef3..20a4cc65b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -26,6 +26,7 @@ "request": "launch", "name": "Run Unit Tests", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", + "args": ["--timeout", "999999"], "console": "integratedTerminal", "internalConsoleOptions": "neverOpen" }