mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
* chore(deps): update dependency eslint-plugin-unicorn to v70 * fix: linting --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
const createObjectURLMock = vi.fn();
|
|
|
|
// eslint-disable-next-line unicorn/no-top-level-side-effects
|
|
Object.defineProperty(URL, 'createObjectURL', {
|
|
writable: true,
|
|
value: createObjectURLMock,
|
|
});
|
|
|
|
export { createObjectURLMock };
|