diff --git a/lib/static/modules/reducer.js b/lib/static/modules/reducer.js index 140c80067..440faaf2a 100644 --- a/lib/static/modules/reducer.js +++ b/lib/static/modules/reducer.js @@ -41,7 +41,9 @@ export default function reducer(state = getInitialState(compiledData), action) { return merge({}, state, {running: true, suites}); // TODO: rewrite store on run all tests } - case actionNames.RUN_FAILED_TESTS: { + case actionNames.RUN_FAILED_TESTS: + case actionNames.RETRY_SUITE: + case actionNames.RETRY_TEST: { return assign(clone(state), {running: true}); } case actionNames.SUITE_BEGIN: {