Jest 프레임 워크를 사용하고 있으며 테스트 스위트가 있습니다. 테스트 중 하나를 끄거나 건너 뛰고 싶습니다.
인터넷 검색 문서가 답을주지 않습니다.
확인할 정보의 답변이나 출처를 알고 있습니까?
답변:
여기서 답을 찾았습니다
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)