Skip to content

Commit

Permalink
bug fix: can't run all test (#29)
Browse files Browse the repository at this point in the history
* bug fix: can't run all test
  • Loading branch information
ppparihar authored Sep 26, 2020
1 parent e7da034 commit 4b35fc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gotestexplorer",
"displayName": "Go Test Explorer",
"description": "Go Test Explorer",
"version": "0.1.12",
"version": "0.1.13",
"publisher": "premparihar",
"engines": {
"vscode": "^1.26.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/testUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export function runGoTest(testconfig: TestConfig): Thenable<RawTestResult> {
}

let buildTags: string = testconfig.goConfig['buildTags'];
let testFlags: Array<string> = testconfig.goConfig['testFlags'];
let testFlags: Array<string> = testconfig.goConfig['testFlags'] || [];
let args: Array<string> = ['test', ...testconfig.flags];
let testType: string = testconfig.isBenchmark ? 'Benchmarks' : 'Tests';

Expand Down

0 comments on commit 4b35fc3

Please sign in to comment.