AFFiNE/scripts/setup/lottie-web.ts
2023-04-14 17:07:41 -05:00

19 lines
338 B
TypeScript

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(),
};
};
}