@ -6,6 +6,9 @@ module FetchMock {
return {
status,
headers: {
raw: () => {
return { "content-type": ["application/json"] }
},
get: () => {
return ["application/json"]
@ -1,6 +1,9 @@
jest.mock("node-fetch", () =>
jest.fn(() => ({
get: () => ["application/json"]
json: jest.fn(),