Ошибка отладки кода Visual Studio Protractor Невозможно подключиться к процессу времени выполнения, тайм-аут через 10000 секунд - (причина: Невозможно подключиться к цели: подключено ECONNREFUSED 127.0.0.1:36406).
Ниже приведена конфигурация моего файла launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch via npm",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm.cmd",
"runtimeArgs": [
"run-script", "regression_sat",
"--inspect=5858"
]
},
{
"type": "node",
"request": "attach",
"name": "Attach to Process",
"port": 5858
}
]
}
и ниже - файл package.json с тегом scripts
"scripts": {
"webdriver-start": "npm_webdriver.bat",
"protractor": "protractor_batch.bat"
"regression_sat": "node_modules/.bin/protractor.cmd ./config/protractor.chrome.conf.js --suite suite_sat --params.env sat"
}