If 4 tests fail, retry will run 3 of the failed 4. If all 3 fail, the next retry will run 2 of the 3 etc...
Is this intended behavior?
Note this example is explicitly set to retry only once,
so If there are 15 failed tests after the first run, this retry will only actually retry 14 of the failed test
afterLaunch = () => {
this._afterLaunch();
return retry.afterLaunch(1);
}