Skip to content

Instantly share code, notes, and snippets.

View nathf's full-sized avatar

Nathan nathf

  • Atlassian
  • Sydney, Australia
View GitHub Profile
@nathf
nathf / fetch.mock.js
Last active September 13, 2018 09:08
Mock Fetch with Jest
const mockResponse = (status, statusText, response) => {
return new window.Response(response, {
status: status,
statusText: statusText,
headers: {
'Content-type': 'application/json'
}
});
};