import reducer from '../../../../src/features/user-admin/redux/reducer'; describe('user-admin/redux/reducer', () => { it('does nothing if no matched action', () => { const prevState = {}; const state = reducer( prevState, { type: '__UNKNOWN_ACTION_TYPE__' } ); expect(state).toBe(prevState); }); // TODO: add global reducer test if needed. });