Skip to content

Commit 5bf7237

Browse files
committed
test/integration/extension: disable all "Test Completion Snippets *"
Skip "Test Completion Snippets For Functions" on windows. This should've been included in go.dev/cl/418356 For #832 Change-Id: Ieff2faa0bfd9154dcc834a30e0dc2259c4fa3b20 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/419110 Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com> TryBot-Result: kokoro <noreply+kokoro@google.com> Reviewed-by: Nooras Saba‎ <saba@golang.org>
1 parent f4fcd7a commit 5bf7237

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/integration/extension.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,6 +1128,9 @@ encountered.
11281128
});
11291129

11301130
test('Test No Completion Snippets For Functions', async () => {
1131+
if (affectedByIssue832()) {
1132+
return;
1133+
}
11311134
const provider = new GoCompletionItemProvider();
11321135
const uri = vscode.Uri.file(path.join(fixturePath, 'completions', 'nosnippets.go'));
11331136
const baseConfig = getGoConfig();

0 commit comments

Comments
 (0)