1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-04-22 01:15:48 +02:00

With direct calls for the VimFindActionIdAction in UI tests, there is no need to open the GoToAction

This commit is contained in:
Alex Plate 2025-03-11 18:31:35 +02:00
parent 6f030eb8a6
commit bbab064281
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -27,7 +27,6 @@ import ui.pages.dialog
import ui.pages.editor
import ui.pages.gutter
import ui.pages.idea
import ui.pages.searchEverywhere
import ui.pages.welcomeFrame
import ui.utils.JavaExampleSteps
import ui.utils.StepsLogger
@ -209,11 +208,8 @@ class UiTests {
}
private fun IdeaFrame.testTrackActionId(editor: Editor) {
remoteRobot.invokeActionJs("GotoAction")
val searchEverywhere = this@testTrackActionId.searchEverywhere()
commonSteps.invokeAction("VimFindActionIdAction")
keyboard {
escape()
}
@ -238,7 +234,6 @@ class UiTests {
""".trimMargin() == editor.text
}
remoteRobot.invokeActionJs("GotoAction")
waitFor { !hasText("Copy Action Id") }
vimExit()