Add missing launch.json so tests can run on F5
This commit is contained in:
Родитель
1d0db7bb4f
Коммит
2a58372e63
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
// Use IntelliSense to learn about possible Node.js debug attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
|
||||
// From https://gist.github.com/paambaati/54d33e409b4f7cf059cc:
|
||||
// The underscore in _mocha is really important - without the _ you run the mocha launcher which will not break in VS Code.
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Launch L0 Tests",
|
||||
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
|
||||
"cwd": "${workspaceRoot}",
|
||||
"args": [
|
||||
"${workspaceRoot}/_build/Tasks/**/Tests/L0.js",
|
||||
"--no-timeouts"
|
||||
],
|
||||
"stopOnEntry": false
|
||||
}
|
||||
]
|
||||
}
|
Загрузка…
Ссылка в новой задаче