Skip to content
Advertisement

Jest TypeError: fetch is not a function

I have the following Jest test code to test a fetch to an endpoint:

JavaScript

But I am getting:

Enter image description here

I know that the movieApiService.getPopularMovies() is a JavaScript fetch request, but Node.js does not have the fetch API, so how I can I make this test to work using Jest?

Advertisement

Answer

I can’t test this with the code you supply, but installing and importing the npm module jest-fetch-mock should do the trick.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement