Skip to content

Instantly share code, notes, and snippets.

@yanmendes
Created August 2, 2019 20:22
Show Gist options
  • Save yanmendes/ae401f69581921319a652ef18656c55a to your computer and use it in GitHub Desktop.
Save yanmendes/ae401f69581921319a652ef18656c55a to your computer and use it in GitHub Desktop.
it('should not submit an invalid form', () => {
const { getByText } = render(<App />)
fireEvent.click(getByText('Submit'))
expect(axios.post).not.toHaveBeenCalled()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment