test/integration/goDebug: disable a substitutePath test that times out

This test currently times out in the nightly release workflow.
Disable while investigating.

For golang/vscode-go#1043

Change-Id: I554213d0706f30f672d2e3cc4189772af63fd50f
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/278782
Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com>
TryBot-Result: kokoro <noreply+kokoro@google.com>
Reviewed-by: Suzy Mueller <suzmue@golang.org>
Trust: Suzy Mueller <suzmue@golang.org>
Trust: Hyang-Ah Hana Kim <hyangah@gmail.com>
diff --git a/test/integration/goDebug.test.ts b/test/integration/goDebug.test.ts
index 272e4d8..15142df 100644
--- a/test/integration/goDebug.test.ts
+++ b/test/integration/goDebug.test.ts
@@ -1404,7 +1404,9 @@
 				await new Promise((resolve) => setTimeout(resolve, 2_000));
 			});
 
-			test('stopped for a breakpoint set during initialization using remotePath (remote attach)', async () => {
+			// Skip because it times out in nightly release workflow.
+			// BUG(https://github.com/golang/vscode-go/issues/1043)
+			test.skip('stopped for a breakpoint set during initialization using remotePath (remote attach)', async () => {
 				const FILE = path.join(helloWorldLocal, 'main.go');
 				const BREAKPOINT_LINE = 29;
 				const remoteProgram = await setUpRemoteProgram(remoteAttachConfig.port, server);