keycloak-scim/jest.setup.ts

15 lines
339 B
TypeScript
Raw Normal View History

2021-09-16 10:24:21 +00:00
import "@testing-library/jest-dom";
import i18n from "i18next";
import { initReactI18next } from "react-i18next";
2020-09-03 17:25:35 +00:00
i18n.use(initReactI18next).init({
2021-09-16 10:24:21 +00:00
lng: "en",
fallbackLng: "en",
2020-09-03 17:25:35 +00:00
// have a common namespace used around the full app
2021-09-16 10:24:21 +00:00
ns: ["translations"],
defaultNS: "translations",
2020-09-03 17:25:35 +00:00
resources: { en: { translations: {} } },
});