cabana/src/__tests__/components/HLS.test.js

25 lines
642 B
JavaScript

import React from 'react';
import { shallow, mount, render } from 'enzyme';
import HLS from '../../components/HLS';
test('HLS successfully mounts with minimal default props', () => {
const component = shallow(
<HLS
source="http://comma.ai"
startTime={0}
playbackSpeed={1}
onVideoElementAvailable={() => {}}
playing={false}
onClick={() => {}}
onLoadStart={() => {}}
onLoadEnd={() => {}}
onUserSeek={() => {}}
onPlaySeek={() => {}}
segmentProgress={() => {}}
shouldRestart={false}
onRestart={() => {}}
/>
);
expect(component.exists()).toBe(true);
});