Farmbot-Web-App/src/ui/__tests__/help_test.ts

10 lines
226 B
TypeScript

import { Help } from "../help";
import { mount } from "enzyme";
describe("<Help />", () => {
it("renders text", () => {
let result = mount(Help({ text: "nice" }));
expect(result.html()).toContain("nice");
});
});