UNPKG

browser-request-listener

Version:

Execute callbacks before or after each fetch api call or XMlHttprequest call

11 lines (10 loc) 312 B
import JSDOMEnvironment from 'jest-environment-jsdom'; export default class FixJSDOMEnvironment extends JSDOMEnvironment { constructor(...args) { super(...args); this.global.fetch = fetch; this.global.Headers = Headers; this.global.Request = Request; this.global.Response = Response; } }