mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 09:15:35 +03:00
9 lines
170 B
TypeScript
9 lines
170 B
TypeScript
const createObjectURLMock = jest.fn();
|
|
|
|
Object.defineProperty(URL, 'createObjectURL', {
|
|
writable: true,
|
|
value: createObjectURLMock
|
|
});
|
|
|
|
export { createObjectURLMock };
|