import * as React from "react"; import { Header } from "../header"; import { shallow } from "enzyme"; describe("
", () => { it("renders", () => { const fn = jest.fn(); const el = shallow(
); expect(el.text()).toContain("FOO"); expect(el.find(".fa-minus").length).toBe(1); }); });