Add missing launch.json so tests can run on F5

This commit is contained in:
Jeff Young (TFS) 2017-03-03 13:54:35 -05:00
Родитель 1d0db7bb4f
Коммит 2a58372e63
1 изменённых файлов: 23 добавлений и 0 удалений

23
.vscode/launch.json поставляемый Normal file
Просмотреть файл

@ -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
}
]
}