Skip to content

Commit acda2ca

Browse files
committed
extension/test/gopls/telemetry: allow more time for vscgo build
GH action on Windows is sometimes very slow. Change-Id: Ie3e4403423439f41005245c163907b24f7ed7e4c Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/619778 Commit-Queue: Hyang-Ah Hana Kim <[email protected]> kokoro-CI: kokoro <[email protected]> Reviewed-by: Hongxiang Jiang <[email protected]>
1 parent 884a05c commit acda2ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extension/test/gopls/telemetry.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function testTelemetryPrompt(tc: testCase, wantPrompt: boolean) {
194194
}
195195

196196
describe('# telemetry reporter using vscgo', async function () {
197-
this.timeout(10000); // go install can be slow.
197+
this.timeout(20000); // go install can be slow.
198198
// installVSCGO expects
199199
// {extensionPath}/vscgo: vscgo source code for testing.
200200
// {extensionPath}/bin: where compiled vscgo will be stored.
@@ -218,6 +218,7 @@ describe('# telemetry reporter using vscgo', async function () {
218218
} catch (e) {
219219
assert.fail(`failed to install vscgo needed for testing: ${e}`);
220220
}
221+
console.log(`vscgo installed: ${vscgo}`);
221222
});
222223
suiteTeardown(() => {
223224
rmdirRecursive(tmpDir);

0 commit comments

Comments
 (0)