We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e805959 commit 14cf0f9Copy full SHA for 14cf0f9
lib/static/modules/reducer.js
@@ -79,7 +79,7 @@ export default function reducer(state = getInitialState(compiledData), action) {
79
}
80
case actionNames.RUN_ALL_TESTS: {
81
const suites = clone(state.suites);
82
- setStatusToAll(suites, action.payload.status);
+ Object.values(suites).map(suite => setStatusToAll(suite, action.payload.status));
83
84
// TODO: rewrite store on run all tests
85
return merge({}, state, {running: true, suites, view: {groupByError: false}});
0 commit comments