Files
karma/ui/src/setupTests.ts
2021-12-15 17:02:38 +00:00

69 lines
2.0 KiB
TypeScript

import React from "react";
import Enzyme from "enzyme";
import Adapter from "@wojtekmaj/enzyme-adapter-react-17";
import { useInView } from "react-intersection-observer";
// react-idle-timer >= 4.6.0
import "regenerator-runtime/runtime";
import { configure } from "mobx";
import { FetchRetryConfig } from "Common/Fetch";
import { useFetchGetMock } from "__fixtures__/useFetchGet";
import { useFetchGet } from "Hooks/useFetchGet";
configure({
enforceActions: "always",
//computedRequiresReaction: true,
//reactionRequiresObservable: true,
//observableRequiresReaction: true,
});
jest.mock("Hooks/useFetchGet");
jest.mock("react-intersection-observer");
// https://github.com/airbnb/enzyme
Enzyme.configure({ adapter: new Adapter() });
// favico.js needs canvas
require("jest-canvas-mock");
// https://reactjs.org/blog/2019/08/08/react-v16.9.0.html#new-deprecations
const reactDeprecationWarning =
/.*has been renamed, and is not recommended for use.*/;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const consoleHandler = (message?: any, ...args: any): void => {
if (reactDeprecationWarning.test(message as string) === false) {
throw new Error(`message=${message} args=${args}`);
}
};
global.console.error = consoleHandler;
global.console.warn = consoleHandler;
global.console.info = consoleHandler;
global.console.log = consoleHandler;
global.console.trace = consoleHandler;
FetchRetryConfig.minTimeout = 2;
FetchRetryConfig.maxTimeout = 10;
// usePopper uses useLayoutEffect but that fails in enzyme
React.useLayoutEffect = React.useEffect;
beforeEach(() => {
useFetchGetMock.fetch.reset();
(useFetchGet as jest.MockedFunction<typeof useFetchGetMock>).mockRestore();
(
useFetchGet as jest.MockedFunction<typeof useFetchGetMock>
).mockImplementation(useFetchGetMock);
(useInView as jest.MockedFunction<typeof useInView>).mockReturnValue([
jest.fn(),
true,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
] as any);
});