1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-07 05:34:02 +02:00

Remove UI test that doesn't work in new IJ UI

This commit is contained in:
Alex Plate 2025-01-20 08:40:25 +02:00
parent 7548b160ae
commit 2ce3b09650
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -94,7 +94,6 @@ class UiTests {
testTripleClickRightFromLineEnd(editor)
testClickRightFromLineEnd(editor)
testClickOnWord(editor)
testGutterClick(editor)
testAddNewLineInNormalMode(editor)
testMappingToCtrlOrAltEnter(editor)
`simple enter in insert mode`(editor)
@ -615,23 +614,6 @@ class UiTests {
vimExit()
}
private fun ContainerFixture.testGutterClick(editor: Editor) {
println("Run testGutterClick...")
gutter {
findText("2").click()
}
assertEquals("Three Four\n", editor.selectedText)
keyboard {
enterText("k")
}
assertEquals("One Two\nThree Four\n", editor.selectedText)
vimExit()
}
// For VIM-3159
private fun ContainerFixture.testAddNewLineInNormalMode(editor: Editor) {
println("Run testAddNewLineInNormalMode...")