我在我的创造反应应用程序项目中使用了 jest 和 ase。当我运行 npm test
时,我得到一个输出,它显示了通过的测试文件的名称,但是我希望输出也包含测试的名称。
例如:
Button.test.js
it ('renders button', () => {
const button = shallow(<Button type="save"/>);
expect(toJson(button)).toMatchSnapshot();
});
现在,当我运行 npm test 时,输出只是:
通过 src/Button.test.js”
以及通过和失败测试的次数(当测试成功时)。我希望输出包括“呈现按钮”和任何其他测试描述(比如运行 rspec 测试时输出的样子)。