10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
import reducer from './dropdown-menu';
|
|
|
|
describe('dropdown_menu reducer', () => {
|
|
it('should return the initial state', () => {
|
|
expect(reducer(undefined, {} as any).toJS()).toEqual({
|
|
isOpen: false,
|
|
});
|
|
});
|
|
});
|