jefflau / jest-fetch-mock

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

fetch.isMocking behaves differently after calling resetMocks #183

Closed baseten closed 3 years ago

baseten commented 3 years ago

When you first setup fetch.isMocking you wrap the isMocking function to only return a boolean:

https://github.com/jefflau/jest-fetch-mock/blob/master/src/index.js#L177

During resetMocks you set fetch.isMocking to isMocking directly:

https://github.com/jefflau/jest-fetch-mock/blob/master/src/index.js#L248