1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-15 15:50:06 +02:00
copilot/packages/cp-frontend/test/unit/components/messaging/modal-error.js

19 lines
426 B
JavaScript

/**
* @jest-environment jsdom
*/
import React from 'react';
import renderer from 'react-test-renderer';
import 'jest-styled-components';
import ModalError from '@components/messaging/modal-error';
it('renders <ModalError /> without throwing', () => {
const tree = renderer
.create(
<ModalError message='Modal error message' onCloseClick={() => {}}/>
)
.toJSON();
expect(tree).toMatchSnapshot();
});