Add VSCode debugging configuration for an automated testing

This commit is contained in:
Denis Perov 2022-04-18 17:30:22 +03:00
parent 44dbca5e05
commit 6b7cbd9d81

17
.vscode/launch.json vendored
View file

@ -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": [