2021-10-13 18:09:43 +08:00
|
|
|
import Adapter from "@wojtekmaj/enzyme-adapter-react-17";
|
|
|
|
import { configure } from "enzyme";
|
2022-03-26 00:31:40 +08:00
|
|
|
import "blob-polyfill"; // https://github.com/jsdom/jsdom/issues/2555
|
2019-12-17 19:47:01 +08:00
|
|
|
|
2022-03-09 06:08:19 +08:00
|
|
|
// Enable the jest & enzyme mocks
|
2021-03-12 00:42:55 +08:00
|
|
|
require('jest-fetch-mock').enableMocks();
|
2021-10-13 18:09:43 +08:00
|
|
|
configure({ adapter: new Adapter() });
|
|
|
|
|
2022-03-09 06:08:19 +08:00
|
|
|
// Very carefully enable the mocks for everything else in
|
|
|
|
// a specific order. We use this order to ensure we properly
|
|
|
|
// establish an application state that actually works.
|
|
|
|
//
|
|
|
|
// These are also require() calls to make sure they get called
|
|
|
|
// synchronously.
|
|
|
|
require("./setup/setupManualMocks"); // must be first
|
|
|
|
require("./setup/setupLanguage");
|
|
|
|
require("./setup/setupConfig");
|