老师,我的测试报错

来源: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回答

张轩

2019-01-01

你跑其他的 test 有问题吗?看起来是你依赖有可能没有装好,我建议你先重装一遍依赖 

0
1
游浪踏
非常感谢!
2019-01-01
共1条回复

React16组件化+测试+全流程 实战在线账本项目

轻松上手,从设计图到上线,精通组件化思维和组件测试

713 学习 · 177 问题

查看课程