我正在使用Jest框架并具有测试套件。我想关闭/跳过我的一项测试。
谷歌搜索文档没有给我答案。
您知道答案或要检查的信息来源吗?
Answers:
我在这里找到答案
test('it is raining', () => {
expect(inchesOfRain()).toBeGreaterThan(0);
});
test.skip('it is not snowing', () => {
expect(inchesOfSnow()).toBe(0);
});
test.only()
您也可以排除test
或describe
在前面加上x
。
个别测试
describe('All Test in this describe will be run', () => {
xtest('Except this test- This test will not be run', () => {
expect(true).toBe(true);
});
test('This test will be run', () => {
expect(true).toBe(true);
});
});
一个描述中的多个测试
xdescribe('All tests in this describe will be skipped', () => {
test('This test will be skipped', () => {
expect(true).toBe(true);
});
test('This test will be skipped', () => {
expect(true).toBe(true);
});
});
如果您想跳过Jest中的测试,可以使用test.skip:
test.skip(name, fn)
这也是以下别名:
it.skip(name, fn)
要么 xit(name, fn)
要么 xtest(name, fn)
此外,如果您想跳过测试套件,则可以使用describe.skip:
describe.skip(name, fn)
这也是以下别名:
xdescribe(name, fn)