Skip to content

Commit

Permalink
fix(gui): do not fail on accept image
Browse files Browse the repository at this point in the history
reproduced when running the test in multiple browsers
  • Loading branch information
DudaGod committed Sep 18, 2018
1 parent 6910711 commit 034c972
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/static/modules/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ function filterBrowsers(suites = [], filterFn) {
}

return set(suite, 'browsers', filter(suite.browsers, (bro) => {
if (suite.browserId && suite.browserId !== bro.name) {
return false;
}

const browserResult = getBrowserResultByAttempt(bro, suite.acceptTestAttempt);

return filterFn(browserResult);
Expand Down

0 comments on commit 034c972

Please sign in to comment.