bigbuffet-rw/app/soapbox/reducers/__tests__/dropdown_menu.test.ts
marcin mikołajczak 65dff4e6a1 Reducers: TypeScript
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2022-06-05 15:05:44 +02: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,
});
});
});