मैं टाइप राइटर में v5.1.2 के राउटर में UseHistory हुक का उपयोग कर रहा हूं? जब यूनिट परीक्षण चल रहा है, तो मुझे मुद्दा मिल गया है।
TypeError: अपरिभाषित की संपत्ति 'इतिहास' नहीं पढ़ सकता है।
import { mount } from 'enzyme';
import React from 'react';
import {Action} from 'history';
import * as router from 'react-router';
import { QuestionContainer } from './QuestionsContainer';
describe('My questions container', () => {
beforeEach(() => {
const historyHistory= {
replace: jest.fn(),
length: 0,
location: {
pathname: '',
search: '',
state: '',
hash: ''
},
action: 'REPLACE' as Action,
push: jest.fn(),
go: jest.fn(),
goBack: jest.fn(),
goForward: jest.fn(),
block: jest.fn(),
listen: jest.fn(),
createHref: jest.fn()
};//fake object
jest.spyOn(router, 'useHistory').mockImplementation(() =>historyHistory);// try to mock hook
});
test('should match with snapshot', () => {
const tree = mount(<QuestionContainer />);
expect(tree).toMatchSnapshot();
});
});
इसके अलावा मैं उपयोग करने की कोशिश की है, jest.mock('react-router', () =>({ useHistory: jest.fn() }));
लेकिन यह अभी भी काम नहीं करता है।