test/integration: disable setSelectedGo test

setSelectedGo is changed to update the workspace configuration
to store the selected go configuration. The test tried to stub the
configuration, but it didn't work for
'should download an uninstalled version of Go' test.

Updates golang/vscode-go#303
Updates golang/vscode-go#302

Change-Id: I80d502b15ab76773fc110e9d232ae64320006789
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/241439
Reviewed-by: Rebecca Stambler <rstambler@golang.org>
diff --git a/test/integration/statusbar.test.ts b/test/integration/statusbar.test.ts
index 7cffb69..0bd97f0 100644
--- a/test/integration/statusbar.test.ts
+++ b/test/integration/statusbar.test.ts
@@ -50,7 +50,8 @@
 	});
 });
 
-describe('#setSelectedGo()', function () {
+describe.skip('#setSelectedGo()', function () {
+	// Disabled due to https://github.com/golang/vscode-go/issues/303.
 	this.timeout(20000);
 	let sandbox: sinon.SinonSandbox | undefined;
 	let goOption: GoEnvironmentOption;