Add feature user-admin

Change-Id: Idcdc718ee502fd803a96409e67109cdac5b8b806
This commit is contained in:
Manuel Stahl
2019-02-07 13:23:30 +01:00
parent deefc950f9
commit 07bc32c05d
14 changed files with 135 additions and 2 deletions
@@ -0,0 +1,14 @@
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.
});