Farmbot-Web-App/frontend/__tests__/test_404.tsx

11 lines
286 B
TypeScript
Raw Normal View History

2017-06-29 12:54:02 -06:00
import * as React from "react";
import { mount } from "enzyme";
import { FourOhFour } from "../404";
describe("<FourOhFour/>", function () {
it("renders helpful text", function () {
2017-08-28 05:49:13 -06:00
const dom = mount(<FourOhFour />);
2017-06-29 12:54:02 -06:00
expect(dom.html()).toContain("Page Not Found");
});
});