Jest是否提供像摩卡咖啡中那样的任何“待定测试”?
Mocha的pending tests让我们编写占位符测试,这对设计测试套件很有帮助:
describe('pending tests', function() {
it('should be a real test someday');
});
待定测试不会由jest-codemods转换并保持不变。
答案 0 :(得分:0)
您应该可以使用skip
:
describe('pending tests', function() {
it.skip('should be a real test someday', () => {});
});
我相信您也可以在describe(describe.skip
)上使用它。
答案 1 :(得分:0)
自从给出上述答案以来,此更改已更改。 .skip
从技术上讲不是待定测试。 Jest现在提供了test.todo("description")
,而没有回调声明尚未编写测试(ref)。