Johannes Rieken 2020-05-19 11:37:36 +02:00
parent da3bf754c3
commit 2aa9f3f243

View file

@ -26,6 +26,7 @@ import { IMenuService, IMenu } from 'vs/platform/actions/common/actions';
import { createTextModel } from 'vs/editor/test/common/editorTestUtils';
import { Range } from 'vs/editor/common/core/range';
import { timeout } from 'vs/base/common/async';
import { NullLogService, ILogService } from 'vs/platform/log/common/log';
suite('SuggestController', function () {
@ -40,6 +41,7 @@ suite('SuggestController', function () {
const serviceCollection = new ServiceCollection(
[ITelemetryService, NullTelemetryService],
[ILogService, new NullLogService()],
[IStorageService, new InMemoryStorageService()],
[IKeybindingService, new MockKeybindingService()],
[IEditorWorkerService, new class extends mock<IEditorWorkerService>() {