Fix remaining type errors in tests

This commit is contained in:
Alejandro Celaya
2023-05-27 12:45:06 +02:00
parent d14aea708e
commit 2a86a0e540
6 changed files with 8 additions and 12 deletions

View File

@@ -9,7 +9,6 @@ describe('ImageDownloader', () => {
let imageDownloader: ImageDownloader;
beforeEach(() => {
vi.clearAllMocks();
(global as any).URL = { createObjectURL: () => '' };
imageDownloader = new ImageDownloader(httpClient, windowMock);