Removed test cases for the old default on reducers switch statements

This commit is contained in:
Alejandro Celaya
2019-03-17 10:17:44 +01:00
parent 232c059e4f
commit d1c10e4895
10 changed files with 0 additions and 52 deletions

View File

@@ -70,12 +70,6 @@ describe('shortUrlsListReducer', () => {
},
});
});
it('returns provided state as is on unknown action', () => {
const state = { foo: 'bar' };
expect(reducer(state, { type: 'unknown' })).toEqual(state);
});
});
describe('listShortUrls', () => {