Skip to content

Commit

Permalink
Merge pull request #218 from gemini-testing/forever-yellow-test-in-gu…
Browse files Browse the repository at this point in the history
…i-mode

fix: forever yellow tests in gui mode after running all tests
  • Loading branch information
CatWithApple authored Apr 3, 2019
2 parents e805959 + 14cf0f9 commit 2330b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/static/modules/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default function reducer(state = getInitialState(compiledData), action) {
}
case actionNames.RUN_ALL_TESTS: {
const suites = clone(state.suites);
setStatusToAll(suites, action.payload.status);
Object.values(suites).map(suite => setStatusToAll(suite, action.payload.status));

// TODO: rewrite store on run all tests
return merge({}, state, {running: true, suites, view: {groupByError: false}});
Expand Down

0 comments on commit 2330b30

Please sign in to comment.