From 4398a4042503a9b45fc9b8d19b66fa8af757815f Mon Sep 17 00:00:00 2001 From: Ramya Achutha Rao Date: Wed, 26 Oct 2016 22:32:07 -0700 Subject: [PATCH] Preserve focus while running tests --- src/goTest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/goTest.ts b/src/goTest.ts index 90b801af1..375c94dca 100644 --- a/src/goTest.ts +++ b/src/goTest.ts @@ -141,7 +141,7 @@ function goTest(testconfig: TestConfig): Thenable { // Remember this config as the last executed test. lastTestConfig = testconfig; outputChannel.clear(); - outputChannel.show(2); + outputChannel.show(2, true); let buildFlags: string[] = testconfig.goConfig['buildFlags']; let buildTags: string = testconfig.goConfig['buildTags'];