生成的.snap文件内容和演示预期不符
来源:5-4 价格题目列表测试分析和编写
慕运维6548256
2019-11-24
老师您好,想问一下在测试PriceList组件的时候snapshot文件夹下生成的.snap文件没有结构,只有这样的一段代码:exports[`test PriceList component should render the component to match snapshot 1`]=`ShallowWrapper {}`;是什么问题啊
写回答
1回答
-
Promise丶澄明
2021-02-22
请参考:
示例:
import React, {Component} from 'react'; import {shallow} from 'enzyme'; import toJson from 'enzyme-to-json'; it('renders correctly', () => { const wrapper = shallow( <MyComponent className="my-component"> <strong>Hello World!</strong> </MyComponent>, ); expect(toJson(wrapper)).toMatchSnapshot(); });
00
相似问题