2015-11-25 17:58:13 +08:00
|
|
|
// A launch configuration that compiles the extension and then opens it inside a new window
|
|
|
|
{
|
|
|
|
"version": "0.1.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "Launch Tests",
|
|
|
|
"type": "extensionHost",
|
|
|
|
"request": "launch",
|
2019-11-15 22:04:29 +08:00
|
|
|
"args": [
|
|
|
|
"${workspaceFolder}/../../",
|
|
|
|
"${workspaceFolder}/testWorkspace",
|
|
|
|
"--extensionDevelopmentPath=${workspaceFolder}",
|
|
|
|
"--extensionTestsPath=${workspaceFolder}/out"
|
|
|
|
],
|
|
|
|
"outFiles": [
|
|
|
|
"${workspaceFolder}/out/**/*.js"
|
|
|
|
],
|
2015-11-25 17:58:13 +08:00
|
|
|
"preLaunchTask": "npm"
|
|
|
|
}
|
|
|
|
]
|
2019-11-15 22:04:29 +08:00
|
|
|
}
|