我在我的 create-react-app 项目中使用了 jest 和酶。当我运行时npm test
,我得到一个输出,显示通过的测试文件的名称,但我希望输出还包括测试的名称。
例子:
按钮.test.js
it ('renders button', () => {
const button = shallow(<Button type="save"/>);
expect(toJson(button)).toMatchSnapshot();
});
现在,当我运行 npm test 时,输出只是:
通过 src/Button.test.js"
以及通过和失败测试的数量(当测试成功时)。我希望输出包含“渲染按钮”和任何其他测试描述(例如运行 rspec 测试时输出的外观)。