OpenMediaCenter/src/elements/VideoContainer/VideoContainer.test.js

11 lines
302 B
JavaScript
Raw Normal View History

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();
});
});