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 bbef051 commit e7278d2Copy full SHA for e7278d2
src/user-groups/__tests__/userGroupsReducer-test.js
@@ -12,15 +12,6 @@ import {
12
import userGroupsReducer from '../userGroupsReducer';
13
14
describe('userGroupsReducer', () => {
15
- test('handles unknown action and no state by returning initial state', () => {
16
- const initialState = undefined;
17
-
18
- const action = deepFreeze({});
19
20
- const newState = userGroupsReducer(initialState, action);
21
- expect(newState).toBeDefined();
22
- });
23
24
describe('REGISTER_COMPLETE', () => {
25
test('when data is provided init state with it', () => {
26
const initialState = deepFreeze([]);
0 commit comments