Azure pane in connection dialog (#11736)

* azure pane in connection dialog

* fix layering

* fix issues

* fix test

* more test fixes

* add back double click to connect for non-contributed views
This commit is contained in:
Anthony Dresser
2020-08-13 17:02:42 -07:00
committed by GitHub
parent a69b4bf662
commit 8cf82c1f8b
19 changed files with 272 additions and 167 deletions

View File

@@ -40,14 +40,17 @@ suite('ConnectionDialogService tests', () => {
new TestCapabilitiesService());
(connectionDialogService as any)._connectionManagementService = mockConnectionManagementService.object;
mockConnectionDialog = TypeMoq.Mock.ofType(ConnectionDialogWidget, TypeMoq.MockBehavior.Strict,
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
undefined, // providerDisplayNameOptions
undefined, // selectedProviderType
undefined, // providerNameToDisplayNameMap
undefined, // instantiationService
undefined, // connectionManagementService
undefined, // contextMenuService
undefined, // contextViewService
{ getViewContainerById: () => ({}), getViewContainerModel: () => ({}) }, // viewDescriptorService
undefined, // themeService
undefined, // layoutService
undefined, // telemetryService
new MockContextKeyService()
);
mockConnectionDialog.setup(c => c.resetConnection());