DocSpace-buildtools/web/ASC.Web.Components/src/components/modal-dialog/modal-dialog.test.js

14 lines
277 B
JavaScript
Raw Normal View History

import React from 'react';
import { mount } from 'enzyme';
import ModalDialog from '.';
describe('<ModalDialog />', () => {
it('renders without error', () => {
const wrapper = mount(
<ModalDialog visible={false} />
);
expect(wrapper).toExist();
});
});