mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
17 lines
497 B
TypeScript
17 lines
497 B
TypeScript
import vueSnapshotSerializer from 'jest-serializer-vue'
|
|
import { expect, vi } from 'vitest'
|
|
|
|
expect.addSnapshotSerializer(vueSnapshotSerializer)
|
|
|
|
global.ResizeObserver = global.ResizeObserver ||
|
|
vi.fn().mockImplementation(() => ({
|
|
disconnect: vi.fn(),
|
|
observe: vi.fn(),
|
|
unobserve: vi.fn()
|
|
}))
|
|
|
|
window.HTMLMediaElement.prototype.load = vi.fn()
|
|
window.HTMLMediaElement.prototype.play = vi.fn()
|
|
window.HTMLMediaElement.prototype.pause = vi.fn()
|
|
|
|
window.BASE_URL = 'http://localhost/'
|