Refactored frontend directory
Some checks failed
Chore App Build, Test, and Push Docker Images / build-and-push (push) Failing after 2m46s
Some checks failed
Chore App Build, Test, and Push Docker Images / build-and-push (push) Failing after 2m46s
This commit is contained in:
13
frontend/src/test/setup.ts
Normal file
13
frontend/src/test/setup.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { vi } from 'vitest'
|
||||
|
||||
// jsdom does not implement scrollTo — stub it to suppress "Not implemented" warnings
|
||||
window.scrollTo = vi.fn()
|
||||
|
||||
// Globally mock imageCache so component tests don't make real fetch calls
|
||||
// and don't spam "response.blob is not a function" errors in jsdom.
|
||||
vi.mock('@/common/imageCache', () => ({
|
||||
getCachedImageUrl: vi.fn().mockResolvedValue(''),
|
||||
getCachedImageBlob: vi.fn().mockResolvedValue(new Blob()),
|
||||
revokeImageUrl: vi.fn(),
|
||||
revokeAllImageUrls: vi.fn(),
|
||||
}))
|
||||
Reference in New Issue
Block a user