2021-07-07 11:34:56 +00:00
|
|
|
import '@testing-library/jest-dom';
|
2020-09-03 17:25:35 +00:00
|
|
|
import i18n from 'i18next';
|
|
|
|
import { initReactI18next } from 'react-i18next';
|
|
|
|
|
2020-10-28 18:17:15 +00:00
|
|
|
import 'mutationobserver-shim';
|
|
|
|
|
2020-09-03 17:25:35 +00:00
|
|
|
i18n.use(initReactI18next).init({
|
|
|
|
lng: 'en',
|
|
|
|
fallbackLng: 'en',
|
|
|
|
|
|
|
|
// have a common namespace used around the full app
|
|
|
|
ns: ['translations'],
|
|
|
|
defaultNS: 'translations',
|
|
|
|
|
|
|
|
resources: { en: { translations: {} } },
|
|
|
|
});
|
|
|
|
|
2020-10-28 18:17:15 +00:00
|
|
|
// eslint-disable-next-line no-undef
|
2021-04-30 12:26:06 +00:00
|
|
|
// @ts-ignore
|
2020-10-28 18:17:15 +00:00
|
|
|
global.MutationObserver = window.MutationObserver;
|