我正在开玩笑地进行酶测试,并带有快照。快照文件生成正确,但是其内容基本上是:
// Jest Snapshot v1, https;//link
exports[`Component1 should match snapshot 1`] = `ReactWrapper {}`;
^^^^^^^^ <-- only component name is changing
对于每个经过测试的文件,即使经过测试的文件具有复杂的逻辑和超过400行的代码也是如此。
为什么会发生?整个代码在哪里?
it('should match snapshot', () => {
const component = mount(<Component1 />);
expect(component).toMatchSnapshot();
});
相关分类