提交 1119064b 编写于 作者: R Rob Lourens

Add Unit Test launch config (not sure why it was deleted?)

上级 042217fc
...@@ -146,6 +146,32 @@ ...@@ -146,6 +146,32 @@
"outFiles": [ "outFiles": [
"${workspaceRoot}/extensions/node_modules/typescript/lib/**/*.js" "${workspaceRoot}/extensions/node_modules/typescript/lib/**/*.js"
] ]
},
{
"type": "node",
"request": "launch",
"name": "Unit Tests",
"protocol": "legacy",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"runtimeExecutable": "${workspaceRoot}/.build/electron/Code - OSS.app/Contents/MacOS/Electron",
"windows": {
"runtimeExecutable": "${workspaceRoot}/.build/electron/Code - OSS.exe"
},
"linux": {
"runtimeExecutable": "${workspaceRoot}/.build/electron/code-oss"
},
"stopOnEntry": false,
"args": [
"--timeout",
"2000"
],
"cwd": "${workspaceRoot}",
"env": {
"ELECTRON_RUN_AS_NODE": "true"
},
"outFiles": [
"${workspaceRoot}/out/**/*.js"
]
} }
], ],
"compounds": [ "compounds": [
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册