我希望我的一些jest
测试待定。我该怎么做? API reference没有任何方法可以让我的测试等待。
答案 0 :(得分:7)
在Jest中没有将测试本身设置为待处理。
但是它允许通过使用跳过测试
it.skip(...)
test.skip(...)
然后将它们标记为未通过,而是跳过:
Tests: 1 skipped, 23 passed, 24 total
对我来说,这等同于“待处理”。
答案 1 :(得分:5)
您正在寻找xit
和xdescribe
http://jasmine.github.io/1.3/introduction.html#section-Disabling_Specs_and_Suites
答案 2 :(得分:4)
不要说test(...)
,只需说出 xtest(...),就会跳过测试。
答案 3 :(得分:4)
您也可以只说test.todo('Some test I still need to do')
然后,测试运行器将显示处于todo
状态的测试数量:
Tests: 1 todo, 2 passed, 3 total
答案 4 :(得分:0)