Skip to content

Commit

Permalink
Merge pull request #371 from KxSystems/KXI-49915
Browse files Browse the repository at this point in the history
KXI-49915
  • Loading branch information
Philip-Carneiro-KX authored Jul 1, 2024
2 parents 52fd57d + 54207bc commit 83f3721
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/services/resultsPanelProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class KdbResultsViewProvider implements WebviewViewProvider {
this._colorTheme = window.activeColorTheme;
this.updateResults(this._results);
});
// this.resolveWebviewView(webviewView);
ext.isResultsTabVisible = true;
}

/* istanbul ignore next */
Expand Down
4 changes: 2 additions & 2 deletions test/suite/commands.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ describe("dataSourceCommand2", () => {
dummyFileContent.dataSource.selectedType = DataSourceTypes.API;
getMetaStub.resolves(dummyMeta);
getDataInsightsStub.resolves({ arrayBuffer: ab, error: "" });
isVisibleStub.returns(false);
ext.isResultsTabVisible = false;
await dataSourceCommand.runDataSource(
dummyFileContent as DataSourceFiles,
insightsConn.connLabel,
Expand All @@ -708,7 +708,7 @@ describe("dataSourceCommand2", () => {
dummyFileContent.dataSource.selectedType = DataSourceTypes.SQL;
getMetaStub.resolves(dummyMeta);
getDataInsightsStub.resolves({ arrayBuffer: ab, error: "" });
isVisibleStub.returns(false);
ext.isResultsTabVisible = false;
await dataSourceCommand.runDataSource(
dummyFileContent as DataSourceFiles,
insightsConn.connLabel,
Expand Down

0 comments on commit 83f3721

Please sign in to comment.