jefflau / jest-fetch-mock

Jest mock for fetch
MIT License
883 stars 116 forks source link

How to intersect mocked data in POST methods? #129

Open tata81 opened 5 years ago

tata81 commented 5 years ago

Hi, I would like to know if there are is a way to implement POST or PUT methods using jest-fetch-mock, as far I see all the examples mentioned in the documentation are related to GET, Could you please provide an example or any use case?

Thank you

jefflau commented 4 years ago

Have you tried mocking your fetch calls that use POST or PUT? it just mocks out the fetch function call completely, so you could return whatever your POST or PUT fetch calls usually return