Skip to content

Commit

Permalink
src/goTestExplorer: add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
firelizzard18 committed Jul 9, 2021
1 parent 24faa6b commit ee4a140
Show file tree
Hide file tree
Showing 6 changed files with 614 additions and 114 deletions.
4 changes: 2 additions & 2 deletions src/goMain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ import semver = require('semver');
import vscode = require('vscode');
import { getFormatTool } from './goFormat';
import { resetSurveyConfig, showSurveyConfig, timeMinute } from './goSurvey';
import { setupTestExplorer } from './goTestExplorer';
import { TestExplorer } from './goTestExplorer';

export let buildDiagnosticCollection: vscode.DiagnosticCollection;
export let lintDiagnosticCollection: vscode.DiagnosticCollection;
Expand Down Expand Up @@ -217,7 +217,7 @@ If you would like additional configuration for diagnostics from gopls, please se
ctx.subscriptions.push(vscode.languages.registerCodeLensProvider(GO_MODE, referencesCodeLensProvider));

// testing
setupTestExplorer(ctx);
TestExplorer.setup(ctx);

// debug
ctx.subscriptions.push(
Expand Down
Loading

0 comments on commit ee4a140

Please sign in to comment.