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.
2 parents 3e515c5 + 2b8494a commit 3a55ae8Copy full SHA for 3a55ae8
extension/test/integration/install.test.ts
@@ -176,7 +176,12 @@ suite('Installation Tests', function () {
176
}
177
178
179
- test('Install one tool with a local proxy', async () => {
+ test('Install one tool with a local proxy', async function () {
180
+ // TODO(golang/vscode-go#3454): reenable the test for old go.
181
+ const systemGoVersion = await getGoVersion();
182
+ if (systemGoVersion.lt('1.21')) {
183
+ this.skip();
184
+ }
185
await runTest(
186
[
187
{
0 commit comments