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