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