UNPKG

fetch-mock

Version:

Mock http requests made using fetch (or isomorphic-fetch)

12 lines (10 loc) 269 B
'use strict'; var FetchMock = require('./fetch-mock'); var statusTextMap = require('./status-text'); module.exports = new FetchMock({ theGlobal: window, Request: window.Request, Response: window.Response, Headers: window.Headers, statusTextMap: statusTextMap });