Farmbot-Web-App/frontend/front_page/__tests__/laptop_splash_test.tsx

11 lines
302 B
TypeScript

import * as React from "react";
import { shallow } from "enzyme";
import { LaptopSplash } from "../laptop_splash";
describe("<LaptopSplash />", () => {
it("renders", () => {
const wrapper = shallow(<LaptopSplash className={""} />);
expect(wrapper.find("video").length).toEqual(1);
});
});