There was an error while loading. Please reload this page.
1 parent 69d5ec7 commit 799dc80Copy full SHA for 799dc80
1 file changed
lib/reporters/html/view-model.js
@@ -128,9 +128,12 @@ module.exports = class ViewModel {
128
}
129
130
const stateInBrowser = node.browsers[existing];
131
- const retry = stateInBrowser.result;
+ const previousResult = stateInBrowser.result;
132
+
133
+ if (!previousResult.skipped) {
134
+ stateInBrowser.retries.push(previousResult);
135
+ }
136
- stateInBrowser.retries.push(retry);
137
stateInBrowser.result = testResult;
138
139
0 commit comments