keycloak-scim/apps/admin-ui/vitest.setup.ts

18 lines
421 B
TypeScript
Raw Normal View History

2022-07-07 05:23:54 +00:00
import matchers from "@testing-library/jest-dom/matchers";
2021-09-16 10:24:21 +00:00
import i18n from "i18next";
import { initReactI18next } from "react-i18next";
2022-07-07 05:23:54 +00:00
import { expect } from "vitest";
expect.extend(matchers);
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: {} } },
});