bigbuffet-rw/app/soapbox/reducers/__tests__/dropdown-menu.test.ts
2022-11-16 08:34:50 -05:00

11 lines
274 B
TypeScript

import reducer from '../dropdown-menu';
describe('dropdown_menu reducer', () => {
it('should return the initial state', () => {
expect(reducer(undefined, {} as any).toJS()).toEqual({
openId: null,
placement: null,
keyboard: false,
});
});
});