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

Increase a timeout for waiting for Idea frame during UI tests

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

View File

@ -20,7 +20,7 @@ import com.intellij.remoterobot.utils.waitFor
import java.time.Duration
fun RemoteRobot.idea(function: IdeaFrame.() -> Unit) {
find<IdeaFrame>().apply(function)
find<IdeaFrame>(Duration.ofSeconds(10)).apply(function)
}
@FixtureName("Idea frame")