Skip to content

Commit

Permalink
More verbose during wait
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed Jun 2, 2024
1 parent d95ee3f commit 06148a3
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,11 @@ class ExtendedPublishSleepTest {
// onView(ViewMatchers.isRoot())
// .captureToBitmap()
// .writeToTestStorage("${javaClass.simpleName}_${nameRule.methodName}-sleep")
Timber.i("wait $WAIT_SECONDS seconds")
sleep(1000 * WAIT_SECONDS)
Timber.i("wait $WAIT_SECONDS seconds start")
for (i in 0..WAIT_SECONDS) {
sleep(1000)
Timber.i("wait for ${WAIT_SECONDS - i} seconds")
}
device.wakeUp()
sleep(1000)

Expand Down

0 comments on commit 06148a3

Please sign in to comment.