mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 17:23:05 -05:00
Un-skip and fix a few of the db projects tests (#13726)
* Un-skip and fix a few of the db projects tests * Addressed comments * Fix one test failure on Linux/Mac
This commit is contained in:
@@ -42,7 +42,7 @@ export class NetCoreTool {
|
||||
return true;
|
||||
}
|
||||
|
||||
private async showInstallDialog(): Promise<void> {
|
||||
public async showInstallDialog(): Promise<void> {
|
||||
let result = await vscode.window.showInformationMessage(NetCoreInstallationConfirmation, UpdateNetCoreLocation, InstallNetCore);
|
||||
if (result === UpdateNetCoreLocation) {
|
||||
//open settings
|
||||
@@ -96,7 +96,7 @@ export class NetCoreTool {
|
||||
NetCoreTool._outputChannel.appendLine(`\t[ ${options.commandTitle} ]`);
|
||||
}
|
||||
|
||||
if (!this.findOrInstallNetCore()) {
|
||||
if (!(await this.findOrInstallNetCore())) {
|
||||
throw new Error(NetCoreInstallationConfirmation);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user