launch.json: specify outFiles for integration tests
Change-Id: I4b5d2610689a7a2e9183fb22d5ec0e2489f94803 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/560476 Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com> Reviewed-by: Suzy Mueller <suzmue@golang.org> TryBot-Result: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Родитель
c21ee5994a
Коммит
a8b52c17ea
|
@ -49,6 +49,9 @@
|
||||||
"VSCODE_GO_IN_TEST": "1", // Disable code that shouldn't be used in test
|
"VSCODE_GO_IN_TEST": "1", // Disable code that shouldn't be used in test
|
||||||
"MOCHA_TIMEOUT": "999999",
|
"MOCHA_TIMEOUT": "999999",
|
||||||
},
|
},
|
||||||
|
"outFiles": [
|
||||||
|
"${workspaceFolder}/extension/out/**/*.js"
|
||||||
|
],
|
||||||
"sourceMaps": true,
|
"sourceMaps": true,
|
||||||
"smartStep": true,
|
"smartStep": true,
|
||||||
"preLaunchTask": "npm: watch",
|
"preLaunchTask": "npm: watch",
|
||||||
|
@ -71,6 +74,9 @@
|
||||||
"env": {
|
"env": {
|
||||||
"VSCODE_GO_IN_TEST": "1" // Disable code that shouldn't be used in test
|
"VSCODE_GO_IN_TEST": "1" // Disable code that shouldn't be used in test
|
||||||
},
|
},
|
||||||
|
"outFiles": [
|
||||||
|
"${workspaceFolder}/extension/out/**/*.js"
|
||||||
|
],
|
||||||
"sourceMaps": true,
|
"sourceMaps": true,
|
||||||
"preLaunchTask": "npm: watch",
|
"preLaunchTask": "npm: watch",
|
||||||
"cwd": "${workspaceFolder}/extension"
|
"cwd": "${workspaceFolder}/extension"
|
||||||
|
|
Загрузка…
Ссылка в новой задаче