老师,我的测试报错
来源:5-3 React 测试工具简介
游浪踏
2019-01-01
TotalPrice.test.js 代码
import React from 'react'
import { shallow } from 'enzyme'
import TotalPrice from '../TotalPrice'
const props = {
income: 1000,
outcome: 2000
}
describe('test TotalPrice component', () => {
it('component should render correct income&outcome number', () => {
const wrapper = shallow(<TotalPrice {...props} />)
expect(wrapper.find('.income span').text() * 1).toEqual(1000)
expect(wrapper.find('.outcome span').text() * 1).toEqual(2000)
})
})
写回答
1回答
-
你跑其他的 test 有问题吗?看起来是你依赖有可能没有装好,我建议你先重装一遍依赖
012019-01-01
相似问题