I have the following Jest test code to test a fetch to an endpoint:
JavaScript
x
17
17
1
import MovieApiService from 'services/MovieApiService';
2
import movies from '../constants/movies';
3
4
describe('MovieApiService', () => {
5
6
test('if jest work correctly', () => {
7
expect(true).toBe(true);
8
});
9
10
test('get an array of popular movies', () => {
11
global.fetch = jest.mock('../mocks/movies');
12
const movieApiService = new MovieApiService();
13
return movieApiService.getPopularMovies()
14
.then(data => expect(data).toBe(movies));
15
});
16
});
17
But I am getting:
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.