Skip to content

Commit c7cf579

Browse files
committed
Test stub
1 parent 8a288aa commit c7cf579

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*---------------------------------------------------------------------------------------------
2+
* Copyright (c) Microsoft Corporation. All rights reserved.
3+
* Licensed under the MIT License. See License.txt in the project root for license information.
4+
*--------------------------------------------------------------------------------------------*/
5+
6+
import { ensureNoDisposablesAreLeakedInTestSuite } from 'vs/base/test/common/utils';
7+
8+
suite('RequestStore', () => {
9+
const store = ensureNoDisposablesAreLeakedInTestSuite();
10+
11+
setup(() => {
12+
instantiationService = new TestInstantiationService();
13+
instantiationService.stub(ILogService, new LogService(new ConsoleLogger()));
14+
});
15+
});

0 commit comments

Comments
 (0)