From a8b52c17ea090cd13c923c2e56f8643f30cf4d4b Mon Sep 17 00:00:00 2001 From: "Hana (Hyang-Ah) Kim" Date: Thu, 1 Feb 2024 11:13:45 -0500 Subject: [PATCH] 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 Reviewed-by: Suzy Mueller TryBot-Result: kokoro --- .vscode/launch.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 93b6e39a..e560dc73 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -49,6 +49,9 @@ "VSCODE_GO_IN_TEST": "1", // Disable code that shouldn't be used in test "MOCHA_TIMEOUT": "999999", }, + "outFiles": [ + "${workspaceFolder}/extension/out/**/*.js" + ], "sourceMaps": true, "smartStep": true, "preLaunchTask": "npm: watch", @@ -71,6 +74,9 @@ "env": { "VSCODE_GO_IN_TEST": "1" // Disable code that shouldn't be used in test }, + "outFiles": [ + "${workspaceFolder}/extension/out/**/*.js" + ], "sourceMaps": true, "preLaunchTask": "npm: watch", "cwd": "${workspaceFolder}/extension"