mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 17:23:05 -05:00
update sql tools service (#11063)
* enable some more tests in canary * update to latest SqlToolsServiceVersion * correcting the .NET install message a bit
This commit is contained in:
@@ -47,7 +47,7 @@ beforeEach(async function (): Promise<void> {
|
||||
testContext = createContext();
|
||||
});
|
||||
|
||||
describe.skip('ProjectsController: project controller operations', function (): void {
|
||||
describe('ProjectsController: project controller operations', function (): void {
|
||||
before(async function (): Promise<void> {
|
||||
await templates.loadTemplates(path.join(__dirname, '..', '..', 'resources', 'templates'));
|
||||
await baselines.loadBaselines();
|
||||
@@ -218,7 +218,7 @@ describe.skip('ProjectsController: project controller operations', function ():
|
||||
});
|
||||
});
|
||||
|
||||
describe.skip('ProjectsController: import operations', function (): void {
|
||||
describe('ProjectsController: import operations', function (): void {
|
||||
it('Should create list of all files and folders correctly', async function (): Promise<void> {
|
||||
const testFolderPath = await testUtils.createDummyFileStructure();
|
||||
|
||||
@@ -295,7 +295,7 @@ describe.skip('ProjectsController: import operations', function (): void {
|
||||
});
|
||||
});
|
||||
|
||||
describe.skip('ProjectsController: add database reference operations', function (): void {
|
||||
describe('ProjectsController: add database reference operations', function (): void {
|
||||
it('Should show error when no reference type is selected', async function (): Promise<void> {
|
||||
testContext.apiWrapper.setup(x => x.showQuickPick(TypeMoq.It.isAny(), TypeMoq.It.isAny(), TypeMoq.It.isAny())).returns(() => Promise.resolve(undefined));
|
||||
testContext.apiWrapper.setup(x => x.showErrorMessage(TypeMoq.It.isAny())).returns((s) => { throw new Error(s); });
|
||||
@@ -343,7 +343,7 @@ describe.skip('ProjectsController: add database reference operations', function
|
||||
});
|
||||
});
|
||||
|
||||
describe.skip('ProjectsController: round trip feature with SSDT', function (): void {
|
||||
describe('ProjectsController: round trip feature with SSDT', function (): void {
|
||||
it('Should show warning message for SSDT project opened in Azure Data Studio', async function (): Promise<void> {
|
||||
testContext.apiWrapper.setup(x => x.showWarningMessage(TypeMoq.It.isAny(), TypeMoq.It.isAny(), TypeMoq.It.isAny())).returns((s) => { throw new Error(s); });
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ const localize = nls.loadMessageBundle();
|
||||
export const DBProjectConfigurationKey: string = 'sqlDatabaseProjects';
|
||||
export const NetCoreInstallLocationKey: string = 'netCoreSDKLocation';
|
||||
export const NextCoreNonWindowsDefaultPath = '/usr/local/share';
|
||||
export const NetCoreInstallationConfirmation: string = localize('sqlDatabaseProjects.NetCoreInstallationConfirmation', "The .NET Core SDK cannnot be located. Project build will not work. Please install the same or update the .Net Core SDK location in settings if already installed.");
|
||||
export const NetCoreInstallationConfirmation: string = localize('sqlDatabaseProjects.NetCoreInstallationConfirmation', "The .NET Core SDK cannnot be located. Project build will not work. Please install .NET Core SDK version 3.1 or update the .Net Core SDK location in settings if already installed.");
|
||||
export const UpdateNetCoreLocation: string = localize('sqlDatabaseProjects.UpdateNetCoreLocation', "Update .Net Core location");
|
||||
export const InstallNetCore: string = localize('sqlDatabaseProjects.InstallNetCore', "Install .Net Core SDK");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user