10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
import reducer from '../modal';
|
|
|
|
describe('modal reducer', () => {
|
|
it('should return the initial state', () => {
|
|
expect(reducer(undefined, {})).toEqual({
|
|
modalType: null,
|
|
modalProps: {},
|
|
});
|
|
});
|
|
});
|