Skip to content

Instantly share code, notes, and snippets.

@pablospaniard
Created August 28, 2019 16:18
Show Gist options
  • Select an option

  • Save pablospaniard/c552b1fdb07cf86bd9e84541a0cb867d to your computer and use it in GitHub Desktop.

Select an option

Save pablospaniard/c552b1fdb07cf86bd9e84541a0cb867d to your computer and use it in GitHub Desktop.
jest.mock('../../../api', () => {
return {
getCurrencies: () =>
Promise.resolve({
data: [{ code: 1, label: 'EUR' }]
}),
getProducts: () =>
Promise.resolve({
data: [{ code: 1, label: 'Facebook' }]
})
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment