diff --git a/lib/reporters/html/view-model.js b/lib/reporters/html/view-model.js index ea55a46a5..e388f4d54 100644 --- a/lib/reporters/html/view-model.js +++ b/lib/reporters/html/view-model.js @@ -130,12 +130,6 @@ module.exports = class ViewModel { const stateInBrowser = node.browsers[existing]; const retry = stateInBrowser.result; - // Hack to avoid situations when `testResult` event is emitted several times for a state, for example, - // when a state passed, but was retried because of a failure of another state in this suite - if (retry.success && testResult.success) { - return; - } - stateInBrowser.retries.push(retry); stateInBrowser.result = testResult; }