Skip to content

Commit 21bbd7b

Browse files
committed
test: skip flaky debug test
Skip the flaky tests to clean up the testing results in github actions. Change-Id: If199596c6aa07880cbb823b3a6e5651f5a79ea51 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/418255 Reviewed-by: Hyang-Ah Hana Kim <[email protected]>
1 parent 305bea7 commit 21bbd7b

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

test/integration/goDebug.test.ts

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1212,21 +1212,16 @@ const testAll = (ctx: Mocha.Context, isDlvDap: boolean, withConsole?: string) =>
12121212
]);
12131213
}
12141214

1215-
test('should set breakpoints during next', async function () {
1216-
if (!isDlvDap) {
1217-
this.skip();
1218-
}
1215+
// Skip this test because it is flaky.
1216+
test.skip('should set breakpoints during next', async () => {
12191217
await setBreakpointsWhileRunningStep(async () => {
12201218
const nextResponse = await dc.nextRequest({ threadId: 1 });
12211219
assert.ok(nextResponse.success);
12221220
});
12231221
});
12241222

1225-
test('should set breakpoints during step out', async function () {
1226-
if (!isDlvDap) {
1227-
this.skip();
1228-
}
1229-
1223+
// Skip this test because it is flaky.
1224+
test.skip('should set breakpoints during step out', async () => {
12301225
await setBreakpointsWhileRunningStep(async () => {
12311226
await Promise.all([dc.stepInRequest({ threadId: 1 }), dc.assertStoppedLocation('step', {})]);
12321227

0 commit comments

Comments
 (0)