Я только что обновился до jest 24.9.0, и некоторые из моих тестов теперь получают ошибку: TypeError: jest.fn(...).mockResolvedValue is not a function
С этим кодом:
describe('comments', () => {
it('should create a comment', async () => {
const comment = {
body: 'here is a comment',
};
const fetch = jest.fn().mockResolvedValue({
status: 200,
json: () => comment
});
const resolver = getResolver({ fetch });
...