mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 08:38:56 +01:00
Fix uninitialized launch config compound schema (#184222)
* Fix uninitialized launch config compound schema Fix #183712 * Fix unit tests
This commit is contained in:
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user