bigbuffet-rw/app/soapbox/reducers/__tests__/sidebar-test.js
2022-04-12 20:23:45 -05:00

7 lines
197 B
JavaScript

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