export function flakySuite(title: string, fn: () => void) /* Suite */ {
// Flaky suites need retries and timeout to complete
// e.g. because they access browser features which can
// be unreliable depending on the environment.
this.retries(3);
this.timeout(1000 * 20);
// Invoke suite ensuring that `this` is
// properly wired in.
fn.call(this);
});
}
/**