Fix uninitialized launch config compound schema (#184222)

* Fix uninitialized launch config compound schema
Fix #183712

* Fix unit tests
This commit is contained in:
Rob Lourens
2023-06-05 11:21:30 -07:00
committed by GitHub
parent 81db52a36a
commit d5c63ca5f0
2 changed files with 3 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ import { TestContextService, TestExtensionService, TestStorageService } from 'vs
import { ServiceCollection } from 'vs/platform/instantiation/common/serviceCollection';
import { IPreferencesService } from 'vs/workbench/services/preferences/common/preferences';
import { URI } from 'vs/base/common/uri';
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
suite('debugConfigurationManager', () => {
const configurationProviderType = 'custom-type';
@@ -52,7 +53,7 @@ suite('debugConfigurationManager', () => {
new TestContextService(),
configurationService,
new TestQuickInputService(),
new TestInstantiationService(new ServiceCollection([IPreferencesService, preferencesService])),
new TestInstantiationService(new ServiceCollection([IPreferencesService, preferencesService], [IConfigurationService, configurationService])),
new TestStorageService(),
new TestExtensionService(),
new TestHistoryService(),