2023-08-25 15:05:21 +00:00
|
|
|
import "@testing-library/jest-dom/vitest";
|
2022-11-18 16:13:39 +00:00
|
|
|
import { use } from "i18next";
|
2021-09-16 10:24:21 +00:00
|
|
|
import { initReactI18next } from "react-i18next";
|
2020-09-03 17:25:35 +00:00
|
|
|
|
2022-11-18 16:13:39 +00:00
|
|
|
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: {} } },
|
|
|
|
});
|