mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-12 11:39:57 +01:00
Remove empty test
This commit is contained in:
@@ -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, <Partial<IStorageService>>{
|
||||
get: () => hideWelcomeSettingsValue,
|
||||
store: (value) => hideWelcomeSettingsValue = value
|
||||
});
|
||||
});
|
||||
|
||||
suiteTeardown(() => {
|
||||
instantiation = null;
|
||||
});
|
||||
|
||||
setup(() => {
|
||||
hideWelcomeSettingsValue = null;
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user