生成的.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();
});


0
0

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

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

713 学习 · 177 问题

查看课程