我正在使用茉莉和Node.js,并且想监视请求。
我有一条这样的路线:
import { mount } from 'enzyme'
import React from 'react'
import SampleChildComponent from './sampleChildComponent'
import SampleComponent from './sampleComponent'
test('renders component without errors', () => {
const wrapper = mount(<SampleComponent />)
expect(wrapper.find(SampleChildComponent).text()).toEqual('sample title')
})
我的问题是,我该如何监视该请求?
我一直在观察重接线模块,但无法正常工作。我不知道我在做什么错!