From 9c861b653ea4ee752bcfd5996375ff4274264ae3 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Thu, 13 Apr 2017 21:40:41 -0700 Subject: [PATCH] Fix tests - provide OutputService in integration test --- .../test/electron-browser/textsearch.perf.integrationTest.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/vs/workbench/test/electron-browser/textsearch.perf.integrationTest.ts b/src/vs/workbench/test/electron-browser/textsearch.perf.integrationTest.ts index 861ff475677..c402c59e1bf 100644 --- a/src/vs/workbench/test/electron-browser/textsearch.perf.integrationTest.ts +++ b/src/vs/workbench/test/electron-browser/textsearch.perf.integrationTest.ts @@ -30,6 +30,9 @@ import { IConfigurationService } from 'vs/platform/configuration/common/configur import { ModelServiceImpl } from 'vs/editor/common/services/modelServiceImpl'; import { IModelService } from 'vs/editor/common/services/modelService'; +import { IOutputService } from 'vs/workbench/parts/output/common/output'; +import { OutputService } from "vs/workbench/parts/output/browser/outputServices"; + import { SearchModel } from 'vs/workbench/parts/search/common/searchModel'; import { QueryBuilder } from 'vs/workbench/parts/search/common/searchQuery'; @@ -67,6 +70,7 @@ suite('TextSearch performance (integration)', () => { [IEditorGroupService, new TestEditorGroupService()], [IEnvironmentService, TestEnvironmentService], [IUntitledEditorService, createSyncDescriptor(UntitledEditorService)], + [IOutputService, createSyncDescriptor(OutputService)], [ISearchService, createSyncDescriptor(SearchService)] ));