Skip to content

Commit

Permalink
Remove UI test that doesn't work in new IJ UI
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPl292 committed Jan 20, 2025
1 parent 7548b16 commit 2ce3b09
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions tests/ui-ij-tests/src/test/kotlin/ui/UiTests.kt
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ class UiTests {
testTripleClickRightFromLineEnd(editor)
testClickRightFromLineEnd(editor)
testClickOnWord(editor)
testGutterClick(editor)
testAddNewLineInNormalMode(editor)
testMappingToCtrlOrAltEnter(editor)
`simple enter in insert mode`(editor)
Expand Down Expand Up @@ -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...")
Expand Down

0 comments on commit 2ce3b09

Please sign in to comment.