Skip to content

Commit bdd1adf

Browse files
committed
make test always fail
1 parent 9b185a2 commit bdd1adf

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

app/src/androidTest/java/at/tomtasche/reader/test/MainActivityTests.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,12 @@ public void testPDF() {
205205
onView(allOf(withId(R.id.menu_edit), withContentDescription("Edit document"), isDisplayed()))
206206
.perform(click());
207207
});
208+
209+
try {
210+
Thread.sleep(10000);
211+
} catch (InterruptedException e) {
212+
throw new RuntimeException(e);
213+
}
208214
}
209215

210216
@Test

0 commit comments

Comments
 (0)