标签: javascript unit-testing reactjs jestjs
我开始知道,针对已知缺陷或未完成的功能维护失败的单元测试用例是好的。有没有办法在jest.js中对失败的单元测试用例进行分类?
jest.js
答案 0 :(得分:0)
唯一的方法是skip测试:
test.skip('it is not snowing', () => { expect(inchesOfSnow()).toBe(0); });