import { vi } from 'vitest'; vi.mock('lottie-web', () => ({ default: {}, })); vi.mock('@blocksuite/editor', () => ({ EditorContainer: vi.fn(), })); if (typeof window !== 'undefined' && HTMLCanvasElement) { // @ts-expect-error HTMLCanvasElement.prototype.getContext = () => { return { fillRect: vi.fn(), }; }; }