Skip to content

Commit e7278d2

Browse files
committed
user groups tests: Remove one test for an unlikely class of bug
As we've done for similar tests in the past, e.g., see dfb9109.
1 parent bbef051 commit e7278d2

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/user-groups/__tests__/userGroupsReducer-test.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,6 @@ import {
1212
import userGroupsReducer from '../userGroupsReducer';
1313

1414
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-
2415
describe('REGISTER_COMPLETE', () => {
2516
test('when data is provided init state with it', () => {
2617
const initialState = deepFreeze([]);

0 commit comments

Comments
 (0)