Skip to content
Snippets Groups Projects
jest.setup.js 129 B
Newer Older
// jest.setup.js
if (typeof window.URL.createObjectURL !== 'function') {
    window.URL.createObjectURL = () => 'blob://dummy';
}