File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
src/vs/platform/terminal/test/common/capabilities/commandDetection Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change
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
+ } ) ;
You can’t perform that action at this time.
0 commit comments