blob: 42c28a454b2a8209ea146b12d32a0104c040509c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react';
import InlineMessage from 'generic-components/InlineMessage/InlineMessage.jsx';
import {shallow} from 'enzyme';
describe('InlineMessage component', () => {
it('should be rendered', () => {
const component = shallow(<InlineMessage/>);
expect(component).toHaveLength(1);
});
});
|