您好,登錄后才能下訂單哦!
在 Jest 中,要跳過特定測試,可以使用 test.skip()
方法
例如,假設您有以下測試:
test('this test will run', () => {
// your test code here
});
test('this test will be skipped', () => {
// your test code here
});
要跳過第二個測試,只需將其更改為:
test('this test will run', () => {
// your test code here
});
test.skip('this test will be skipped', () => {
// your test code here
});
現在,當您運行測試時,第二個測試將被跳過。請注意,test.skip()
也可以與 describe
結構一起使用,以跳過整個測試套件。
describe('skipped suite', () => {
test('this test will be skipped', () => {
// your test code here
});
test('this test will also be skipped', () => {
// your test code here
});
}).skip();
這將跳過整個“skipped suite”中的所有測試。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。