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

30 lines
783 B
TypeScript

jest.mock("../util/errors.ts", () => ({ catchErrors: jest.fn() }));
import * as React from "react";
import { mount } from "enzyme";
import { ErrorBoundary } from "../error_boundary";
import { catchErrors } from "../util";
class Kaboom extends React.Component<{}, {}> {
TRUE = (1 + 1) === 2;
render() {
if (this.TRUE) {
throw new Error("ALWAYS");
} else {
return <div />;
}
}
}
describe("<ErrorBoundary/>", () => {
it("handles exceptions", () => {
const nodes = <ErrorBoundary><Kaboom /></ErrorBoundary>;
const el = mount<ErrorBoundary>(nodes);
expect(el.text()).toContain("can't render this part of the page");
const i = el.instance();
expect(i.state.hasError).toBe(true);
expect(catchErrors).toHaveBeenCalled();
});
});