You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importfetchMockfrom'jest-fetch-mock';fetchMock.mock...
// -------^// Property 'mock' does not exist on type 'FetchMock'
The issue is this
I'm using @jest/globals instead of @types/jest in my setup.
The other packages I use all removed @types/jest so now it's no longer in the node_modules folder. jest-fetch-mock doesn't list @types/jest as a dependency.
Any chance for a fix so jest-fetch-mock works out of the box?
I see two solutions.
Add @types/jest to the dependencies.
Switch to @jest/globals and add it to the dependencies.
The latter seems more futureproof.
The text was updated successfully, but these errors were encountered:
Nice solution here. Just adding one of the above type packages to my dependencies fixes a very confusing problem where typescript was red but the tests were green.
I just encountered this error.
The issue is this
I'm using
@jest/globals
instead of@types/jest
in my setup.The other packages I use all removed
@types/jest
so now it's no longer in thenode_modules
folder.jest-fetch-mock
doesn't list@types/jest
as a dependency.Any chance for a fix so
jest-fetch-mock
works out of the box?I see two solutions.
@types/jest
to the dependencies.@jest/globals
and add it to the dependencies.The latter seems more futureproof.
The text was updated successfully, but these errors were encountered: