2017-08-21 15:39:02 +03:00
|
|
|
/**
|
|
|
|
* @jest-environment jsdom
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import renderer from 'react-test-renderer';
|
|
|
|
import 'jest-styled-components';
|
|
|
|
|
|
|
|
import Warning from '@components/messaging/warning';
|
|
|
|
|
|
|
|
it('renders <Warning /> without throwing', () => {
|
2017-08-28 22:21:08 +03:00
|
|
|
const tree = renderer.create(<Warning message="Warning message" />).toJSON();
|
2017-08-21 15:39:02 +03:00
|
|
|
expect(tree).toMatchSnapshot();
|
|
|
|
});
|