UNPKG

fetch-mock

Version:

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

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