Skip to content

Commit bd3e16b

Browse files
author
aiday-mar
committed
Initial skeleton of sticky scroll test
1 parent e7360ef commit bd3e16b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
});

0 commit comments

Comments
 (0)