Last active
August 2, 2019 17:50
-
-
Save yanmendes/3d8b77cc587150908ca5ab5399926928 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// src/setupTests.js | |
import '@testing-library/react/cleanup-after-each' | |
import '@testing-library/jest-dom/extend-expect' | |
// src/App.test.js | |
import axios from 'axios' | |
jest.mock('axios') | |
axios.post.mockResolvedValue('ok!') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment