Files
appRobotDriver/.vscode/launch.json
2026-04-06 05:24:41 +02:00

32 lines
793 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Attach appRobotDriver (Docker)",
"type": "node",
"request": "attach",
"address": "localhost",
"port": 2081,
"localRoot": "${workspaceFolder}",
"remoteRoot": "/usr/src/app",
"restart": true,
"timeout": 10000
},
{
"name": "Debug npm test",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "test"],
"console": "integratedTerminal"
},
{
"name": "Debug current test file",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"args": ["--runInBand", "${file}"],
"console": "integratedTerminal"
}
]
}