We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8bbba commit 2f72921Copy full SHA for 2f72921
test/integration/goDebug.test.ts
@@ -1404,7 +1404,9 @@ suite('Go Debug Adapter', function () {
1404
await new Promise((resolve) => setTimeout(resolve, 2_000));
1405
});
1406
1407
- test('stopped for a breakpoint set during initialization using remotePath (remote attach)', async () => {
+ // Skip because it times out in nightly release workflow.
1408
+ // BUG(https://github.com/golang/vscode-go/issues/1043)
1409
+ test.skip('stopped for a breakpoint set during initialization using remotePath (remote attach)', async () => {
1410
const FILE = path.join(helloWorldLocal, 'main.go');
1411
const BREAKPOINT_LINE = 29;
1412
const remoteProgram = await setUpRemoteProgram(remoteAttachConfig.port, server);
0 commit comments