如何使用Jasmine for Node.js监视请求?

时间:2019-06-06 21:59:23

标签: node.js unit-testing jasmine spy

我正在使用茉莉和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')
})

我的问题是,我该如何监视该请求?

我一直在观察重接线模块,但无法正常工作。我不知道我在做什么错!

0 个答案:

没有答案