From 5eeb74bbb14bbb80992ec3d17323b2be8a8075d1 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Wed, 20 Mar 2019 16:55:38 -0700 Subject: [PATCH] Remove empty test --- .../test/common/gettingStarted.test.ts | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/vs/workbench/contrib/welcome/gettingStarted/test/common/gettingStarted.test.ts diff --git a/src/vs/workbench/contrib/welcome/gettingStarted/test/common/gettingStarted.test.ts b/src/vs/workbench/contrib/welcome/gettingStarted/test/common/gettingStarted.test.ts deleted file mode 100644 index 41e8267eb7c..00000000000 --- a/src/vs/workbench/contrib/welcome/gettingStarted/test/common/gettingStarted.test.ts +++ /dev/null @@ -1,32 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -import { TestInstantiationService } from 'vs/platform/instantiation/test/common/instantiationServiceMock'; -import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; -import { IStorageService } from 'vs/platform/storage/common/storage'; - -suite('Workbench - GettingStarted', () => { - let instantiation: TestInstantiationService | null = null; - let hideWelcomeSettingsValue: string | null = null; - - suiteSetup(() => { - instantiation = new TestInstantiationService(); - instantiation.stub(IWorkspaceContextService, { - - }); - instantiation.stub(IStorageService, >{ - get: () => hideWelcomeSettingsValue, - store: (value) => hideWelcomeSettingsValue = value - }); - }); - - suiteTeardown(() => { - instantiation = null; - }); - - setup(() => { - hideWelcomeSettingsValue = null; - }); -}); \ No newline at end of file -- GitLab