1
我有問題,如果我運行我的測試沒有--coverage
選項一切都通過,但只要我運行jest
與--coverage
選項我的一些測試失敗。Jest測試失敗只覆蓋
這裏是日誌:
Button › Primary button › should render a primary button
undefined:3:457: property missing ':'
at Object.it (src/components/Buttons/Button/Button.test.js:13:24)
at Promise.resolve.then.el (node_modules/p-map/index.js:46:16)
而且測試:
it('should render a primary button',() => {
const props = { primary: true };
const rendered = renderer.create(<Button { ...props }>Some Button</Button>).toJSON();
expect(rendered).toMatchSnapshot();
});
出現故障的線路是expect(rendered).toMatchSnapshot();
任何人任何想法?