Skip to content

Instantly share code, notes, and snippets.

@trobalik
trobalik / FlakyTests.java
Created June 2, 2016 21:49
Flaky Espresso Tests and the RetryTestRule
package com.yourapp.test;
// import statements...
public class FlakyTests {
@Rule
RetryTestRule retry = new RetryTestRule(3); // will attempt each test up to 3 times
@Test