From eb31d6f54fed2cd56b8ea9bef84ed73852f06290 Mon Sep 17 00:00:00 2001 From: Tasos Boulis Date: Wed, 16 Nov 2022 19:16:12 +0200 Subject: [PATCH] Add debugger for unit tests (#2392) --- .vscode/launch.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 578f7d8e..0dc73ac6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -56,6 +56,14 @@ ], "internalConsoleOptions": "openOnSessionStart", "preLaunchTask": "prepare-e2e" + }, + { + "type": "node", + "request": "launch", + "name": "Unit Tests", + "program": "${workspaceRoot}/node_modules/jest/bin/jest", + "args": [], + "internalConsoleOptions": "openOnSessionStart", } ] }