Simple tests for node debugger
This commit is contained in:
parent
968a443d09
commit
0b0388d075
5 changed files with 100 additions and 0 deletions
5
support/test/node/simple/.tern-project
Normal file
5
support/test/node/simple/.tern-project
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"plugins": {
|
||||
"node": {}
|
||||
}
|
||||
}
|
||||
15
support/test/node/simple/.vimspector.json
Normal file
15
support/test/node/simple/.vimspector.json
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"configurations": {
|
||||
"run": {
|
||||
"adapter": "vscode-node",
|
||||
"configuration": {
|
||||
"request": "launch",
|
||||
"protocol": "auto",
|
||||
"stopOnEntry": true,
|
||||
"console": "integratedTerminal",
|
||||
"program": "${workspaceRoot}/simple.js",
|
||||
"cwd": "${workspaceRoot}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
3
support/test/node/simple/simple.js
Normal file
3
support/test/node/simple/simple.js
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
var msg = 'Hello, world!'
|
||||
|
||||
console.log( "OK stuff happened" )
|
||||
Loading…
Add table
Add a link
Reference in a new issue