A Visual Studio Code extension to debug your Javascript code on targets that support the Chrome Debugging Protocol.
"trace": true
and include the full log, that would be very helpful!
command 'extension.chrome-debug.startSession' not found
launch.json
:{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Angular Client",
"type": "chrome",
"request": "launch",
"url": "http://localhost:4200",
"runtimeArgs": [
"--user-data-dir",
"--remote-debugging-port=9222"
],
"sourceMaps": true,
"trace": true,
"webRoot": "${workspaceRoot}/Frontend/",
"userDataDir": "${workspaceRoot}/.vscode/chrome"
}
]
}
{
"type": "node",
"request": "launch",
"name": "test actions",
"env": { "NODE_ENV": "test"},
"args": ["./test/actions.spec.js","--compilers", "js:babel-register", "--require", "babel-polyfill"],
"cwd": "${workspaceRoot}",
"stopOnEntry": false,
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/babel-node",
"runtimeArgs": [
"--nolazy"
],
"sourceMaps": true,
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha"
}
t=-19185 [st= 0] +REQUEST_ALIVE [dt=22472]
--> has_upload = true
--> is_pending = true
--> load_flags = 16384 (MAYBE_USER_GESTURE)
--> load_state = 14 (WAITING_FOR_RESPONSE)
--> method = "POST"
--> net_error = -1 (ERR_IO_PENDING)
--> status = "IO_PENDING"
--> url = "http://new.intltest.zomworkdev.com/loginapi/regsend"
t= 3286 [st=22471] CANCELLED
t= 3287 [st=22472] -URL_REQUEST_START_JOB
--> net_error = -3 (ERR_ABORTED)
t= 3287 [st=22472] URL_REQUEST_DELEGATE [dt=0]
t= 3287 [st=22472] -REQUEST_ALIVE
Can someone help me?