Files
outline/app/test/setup.ts
T
Hemachandar 04c3d81b1f chore: Setup missing oxlint configs (#9862)
* shared

* server

* app

* remove vestigial eslintrc files

* update comment directives
2025-08-06 19:54:22 -04:00

13 lines
394 B
TypeScript

/* oxlint-disable */
// @ts-expect-error ts-migrate(7016) FIXME: Could not find a declaration file for module '../.... Remove this comment to see the full error message
import localStorage from "../../__mocks__/localStorage";
import { initI18n } from "../utils/i18n";
initI18n();
global.localStorage = localStorage;
require("jest-fetch-mock").enableMocks();
jest.mock("~/utils/ApiClient");