Skip to content

Commit

Permalink
Bump timeout for flaky test.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Dec 6, 2023
1 parent 467b0db commit e863eb7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ abstract class AbstractEmojiSearchUiTest(private val appPackage: String) {
awaitText("0. +1")
}

private fun awaitText(value: String, duration: Duration = 4.seconds) {
private fun awaitText(value: String, duration: Duration = 10.seconds) {
val text = device.findObject(UiSelector().text(value))
if (!text.waitForExists(duration.inWholeMilliseconds)) {
throw AssertionError("Waited $duration for \"$value\" but never appeared")
Expand Down

0 comments on commit e863eb7

Please sign in to comment.