carepath-api / interpreter /frontend /src /setupTests.ts
tranth3truong's picture
Deploy public Scribe-only CarePath Space
cc678b9
Raw
History Blame Contribute Delete
249 Bytes
import "@testing-library/jest-dom/vitest";
import { cleanup } from "@testing-library/react";
import { afterEach, vi } from "vitest";
Object.defineProperty(window, "scrollTo", { value: vi.fn(), writable: true });
afterEach(() => {
cleanup();
});