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