bigbuffet-rw/src/reducers/sidebar.test.ts

8 lines
203 B
TypeScript
Raw Normal View History

import reducer from './sidebar';
2020-06-09 18:08:07 -07:00
describe('sidebar reducer', () => {
it('should return the initial state', () => {
expect(reducer(undefined, {} as any)).toEqual({ sidebarOpen: false });
2020-06-09 18:08:07 -07:00
});
});