2020-10-25 18:48:23 +00:00
|
|
|
import {shallow} from 'enzyme';
|
|
|
|
import React from 'react';
|
|
|
|
import VideoContainer from './VideoContainer';
|
2020-06-12 15:57:30 +00:00
|
|
|
|
|
|
|
describe('<VideoContainer/>', function () {
|
|
|
|
it('renders without crashing ', function () {
|
|
|
|
const wrapper = shallow(<VideoContainer data={[]}/>);
|
|
|
|
wrapper.unmount();
|
|
|
|
});
|
|
|
|
});
|