41 lines
884 B
TypeScript
41 lines
884 B
TypeScript
import "@testing-library/jest-dom";
|
|
import { cleanup } from "@testing-library/react";
|
|
import { afterEach, vi } from "vitest";
|
|
import "./i18n.test";
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|
|
|
|
global.ResizeObserver = class ResizeObserver {
|
|
observe() {
|
|
return undefined;
|
|
}
|
|
unobserve() {
|
|
return undefined;
|
|
}
|
|
disconnect() {
|
|
return undefined;
|
|
}
|
|
};
|
|
|
|
if (typeof Element !== "undefined") {
|
|
Element.prototype.scrollIntoView = vi.fn();
|
|
Element.prototype.scrollTo = vi.fn();
|
|
}
|
|
|
|
if (typeof window !== "undefined") {
|
|
Object.defineProperty(window, "matchMedia", {
|
|
writable: true,
|
|
value: vi.fn().mockImplementation((query) => ({
|
|
matches: false,
|
|
media: query,
|
|
onchange: null,
|
|
addListener: vi.fn(),
|
|
removeListener: vi.fn(),
|
|
addEventListener: vi.fn(),
|
|
removeEventListener: vi.fn(),
|
|
dispatchEvent: vi.fn(),
|
|
})),
|
|
});
|
|
}
|