From 85911a1186f5627242003ed007d283bd030e34c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Sch=C3=B6nb=C3=A4chler?= <42278642+schoero@users.noreply.github.com> Date: Tue, 14 Nov 2023 22:52:11 +0100 Subject: [PATCH] test: disable multi threading in debugger for a linear stack history --- .vscode/launch.json | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c405bc6..b4c174c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,7 +1,11 @@ { "configurations": [ { - "args": ["run", "${relativeFileDirname}/${fileBasenameNoExtension}"], + "args": [ + "run", + "${relativeFileDirname}/${fileBasenameNoExtension}", + "--no-threads" + ], "autoAttachChildProcesses": true, "console": "integratedTerminal", "name": "debug current test file", @@ -12,7 +16,11 @@ "type": "node" }, { - "args": ["run", "${relativeFileDirname}/${fileBasenameNoExtension}"], + "args": [ + "run", + "${relativeFileDirname}/${fileBasenameNoExtension}", + "--no-threads" + ], "autoAttachChildProcesses": true, "console": "integratedTerminal", "env": { @@ -26,7 +34,11 @@ "type": "node" }, { - "args": ["run", "${relativeFileDirname}/${fileBasenameNoExtension}"], + "args": [ + "run", + "${relativeFileDirname}/${fileBasenameNoExtension}", + "--no-threads" + ], "autoAttachChildProcesses": true, "console": "integratedTerminal", "name": "debug current test file with node internals",