File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
src/vs/editor/contrib/stickyScroll/test/browser Expand file tree Collapse file tree 1 file changed +20
-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
+ import { withTestCodeEditor } from 'vs/editor/test/browser/testCodeEditor' ;
6
+
7
+ suite ( 'Sticky Scroll Tests' , ( ) => {
8
+
9
+ test ( 'issue #8817: Cursor position changes when you cancel multicursor' , ( ) => {
10
+ withTestCodeEditor ( [
11
+ 'var x = (3 * 5)' ,
12
+ 'var y = (3 * 5)' ,
13
+ 'var z = (3 * 5)' ,
14
+ ] , { } , ( editor ) => {
15
+
16
+ // const findController = editor.registerAndInstantiateContribution(CommonFindController.ID, CommonFindController);
17
+ // findController.dispose();
18
+ } ) ;
19
+ } ) ;
20
+ } ) ;
You can’t perform that action at this time.
0 commit comments