Skip to content

Commit a8b52c1

Browse files
committed
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 <[email protected]> Reviewed-by: Suzy Mueller <[email protected]> TryBot-Result: kokoro <[email protected]>
1 parent c21ee59 commit a8b52c1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.vscode/launch.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@
4949
"VSCODE_GO_IN_TEST": "1", // Disable code that shouldn't be used in test
5050
"MOCHA_TIMEOUT": "999999",
5151
},
52+
"outFiles": [
53+
"${workspaceFolder}/extension/out/**/*.js"
54+
],
5255
"sourceMaps": true,
5356
"smartStep": true,
5457
"preLaunchTask": "npm: watch",
@@ -71,6 +74,9 @@
7174
"env": {
7275
"VSCODE_GO_IN_TEST": "1" // Disable code that shouldn't be used in test
7376
},
77+
"outFiles": [
78+
"${workspaceFolder}/extension/out/**/*.js"
79+
],
7480
"sourceMaps": true,
7581
"preLaunchTask": "npm: watch",
7682
"cwd": "${workspaceFolder}/extension"

0 commit comments

Comments
 (0)