9 lines
237 B
JavaScript
9 lines
237 B
JavaScript
import { Map as ImmutableMap } from 'immutable';
|
|
|
|
import reducer from '../groups';
|
|
|
|
describe('groups reducer', () => {
|
|
it('should return the initial state', () => {
|
|
expect(reducer(undefined, {})).toEqual(ImmutableMap());
|
|
});
|
|
});
|