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