Spaces:
Running
Running
File size: 1,879 Bytes
34c5839 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | // fake-indexeddb/auto installs all IndexedDB globals (indexedDB, IDBKeyRange,
// etc.) so that Dexie-based cache tests exercise the real cache code paths
// instead of silently erroring into catch blocks.
import "fake-indexeddb/auto";
import "@testing-library/jest-dom";
import { vi } from "vitest";
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(),
})),
});
class ResizeObserverMock {
observe = vi.fn();
unobserve = vi.fn();
disconnect = vi.fn();
}
vi.stubGlobal("ResizeObserver", ResizeObserverMock);
class IntersectionObserverMock {
root = null;
rootMargin = "";
thresholds = [];
observe = vi.fn();
unobserve = vi.fn();
disconnect = vi.fn();
takeRecords = vi.fn().mockReturnValue([]);
}
vi.stubGlobal("IntersectionObserver", IntersectionObserverMock);
class StorageMock implements Storage {
private store = new Map<string, string>();
get length(): number {
return this.store.size;
}
clear(): void {
this.store.clear();
}
getItem(key: string): string | null {
return this.store.has(key) ? (this.store.get(key) as string) : null;
}
setItem(key: string, value: string): void {
this.store.set(String(key), String(value));
}
removeItem(key: string): void {
this.store.delete(key);
}
key(index: number): string | null {
return Array.from(this.store.keys())[index] ?? null;
}
}
vi.stubGlobal("localStorage", new StorageMock());
vi.stubGlobal("sessionStorage", new StorageMock());
Object.defineProperty(document, "fonts", {
writable: true,
value: {
addEventListener: vi.fn(),
removeEventListener: vi.fn(),
},
});
|