Skip to content

Instantly share code, notes, and snippets.

@kilgarenone
Created July 19, 2018 06:53
Show Gist options
  • Save kilgarenone/6340f77faead52ad0a3a06ab9f7d6930 to your computer and use it in GitHub Desktop.
Save kilgarenone/6340f77faead52ad0a3a06ab9f7d6930 to your computer and use it in GitHub Desktop.
axios mock file
// src/__mocks__/axios.ts
const mockAxios = jest.genMockFromModule('axios')
// this is the key to fix the axios.create() undefined error!
mockAxios.create = jest.fn(() => mockAxios)
export default mockAxios
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment