kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
10 wiersze
197 B
TypeScript
10 wiersze
197 B
TypeScript
|
import { AudioContext } from 'standardized-audio-context-mock'
|
||
|
import { vi, beforeAll } from 'vitest'
|
||
|
|
||
|
beforeAll(() => {
|
||
|
vi.mock('standardized-audio-context', () => ({
|
||
|
AudioContext
|
||
|
}))
|
||
|
})
|
||
|
|