bigbuffet-rw/app/soapbox/reducers/__tests__/dropdown_menu-test.js

13 lines
324 B
JavaScript

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