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

27 lines
666 B
JavaScript

global.__JEST__ = 1;
import HLS from "../../components/HLS";
import React from "react";
import { shallow, mount, render } from "enzyme";
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);
});