8 lines
169 B
JavaScript
8 lines
169 B
JavaScript
|
import reducer from '../me';
|
||
|
|
||
|
describe('me reducer', () => {
|
||
|
it('should return the initial state', () => {
|
||
|
expect(reducer(undefined, {})).toEqual(null);
|
||
|
});
|
||
|
});
|