Skip to content Skip to sidebar Skip to footer
Showing posts with the label React Testing Library

How To Mock Axios.create([config]) Function To Return Its Instance Methods Instead Of Overriding Them With Mock?

I'm trying to mock axios.create() because I'm using its instance across the app and obvious… Read more How To Mock Axios.create([config]) Function To Return Its Instance Methods Instead Of Overriding Them With Mock?

Mocking React Custom Hook

I need to mock useLogin hook, bacause it contains logic that throws an error. Later i will test it … Read more Mocking React Custom Hook