11 lines
261 B
JavaScript
11 lines
261 B
JavaScript
|
export const jsdom = require('jsdom-global')();
|
||
|
const sourceMapSupport = require('source-map-support');
|
||
|
|
||
|
sourceMapSupport.install({
|
||
|
environment: 'node',
|
||
|
handleUncaughtExceptions: true,
|
||
|
hookRequire: true,
|
||
|
});
|
||
|
|
||
|
window.URL.createObjectURL = function () { };
|