You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
842 B
31 lines
842 B
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Mocha Tests",
|
|
"cwd": "${workspaceRoot}",
|
|
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/mocha",
|
|
"windows": {
|
|
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/mocha.cmd"
|
|
},
|
|
"runtimeArgs": [
|
|
"-u",
|
|
"tdd",
|
|
"--timeout",
|
|
"999999",
|
|
"--colors",
|
|
"${workspaceRoot}/src/node/test"
|
|
],
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach to Process",
|
|
"port": 5858
|
|
}
|
|
]
|
|
}
|