Fixed broken notebook tests (#8885)

This commit is contained in:
Leila Lali
2020-01-15 13:57:52 -08:00
committed by GitHub
parent 5cebfb3013
commit 167a9f991a
2 changed files with 7 additions and 12 deletions

View File

@@ -275,7 +275,6 @@ describe('Manage Packages', () => {
await should(model.uninstallPackages(TypeMoq.It.isAny())).rejected();
});
/* Test disabled. Tracking issue: https://github.com/microsoft/azuredatastudio/issues/8877
it('current provider should install and uninstall packages successfully', async function (): Promise<void> {
let testContext1 = createContext();
testContext1.provider.providerId = 'providerId1';
@@ -318,9 +317,8 @@ describe('Manage Packages', () => {
await should(model.installPackages(packages)).resolved();
await should(model.uninstallPackages(packages)).resolved();
await should(model.getPackageOverview('p1')).resolved();
await should(model.getLocationTitle()).rejectedWith('location title 2');
await should(model.getLocationTitle()).resolvedWith('location title 2');
});
*/
function createContext(): TestContext {
return {