Я использую шутку для модульного тестирования в реагировать родной.Вот моя функция componentWillMount ():
componentWillMount() {
this.setState({ loading: true });
axios.get(SERVER_URL + '/courses')
.then(response => {
this.state.trainingcatalogues = []
this.state.traininglist = []
this.state.Location1 = []
this.state.Category1 = []
this.state.Location2 = ['All']
this.state.Category2 = ['All']
for (var key in response.data) {
if (response.data[key].coursetype === 'Instructor-Led' && response.data[key].status === 'Active' ) {
this.state.Location1.push(response.data[key].location);
this.state.Category1.push(response.data[key].category);
this.state.trainingcatalogues.push(response.data[key]);
this.state.traininglist.push(response.data[key]);
}
}
Я хочу высказать «ответ» в моем тестовом примере.Он имеет следующий формат:
let response =
{
"data": [
{
"_id": "5acb16701e09ae8abc29e7fb",
"courseName": "Agile Fundamentals420",
"category": "Agile",
"coursetype": "Instructor-Led",
"duration": 22,
"addnote": "contractor",
"status": "Completed",
"registrations": 10
}
]
}
Это мой тестовый блок:
it('should test the componentwillMount function', () => {
const wrapper = shallow(<Instructor_cata navigation = {navigation}/>);
const instance = wrapper.instance();
const componentWillMountSpy = jest.spyOn(instance,"componentWillMount");
instance.forceUpdate();
instance.componentWillMount();
expect(componentWillMountSpy).toHaveBeenCalled();
});
Как мне высмеивать эти данные ответа внутри устройстваконтрольный пример?