From 6b7cbd9d8154d8467bd0166a6b0f95eaa566e685 Mon Sep 17 00:00:00 2001 From: Denis Perov Date: Mon, 18 Apr 2022 17:30:22 +0300 Subject: [PATCH] Add VSCode debugging configuration for an automated testing --- .vscode/launch.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 243eeb203..1cb8d89fa 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,6 +17,23 @@ "outputCapture": "std", "port": 9229, "timeout": 60000 + }, + { + "type": "node", + "request": "launch", + "name": "Test: Node", + "runtimeExecutable": "meteor", + "runtimeArgs": [ + "test", + "--inspect-brk=9229", + "--port=4040", + "--exclude-archs=web.browser.legacy,web.cordova", + "--driver-package=meteortesting:mocha", + "--settings=settings.json" + ], + "outputCapture": "std", + "port": 9229, + "timeout": 60000 } ], "compounds": [