3 回答

TA貢獻(xiàn)1851條經(jīng)驗(yàn) 獲得超3個贊
--testPathIgnorePatterns
使用cli 選項(xiàng)怎么樣?
yarn test --testPathIgnorePatterns=user.test.ts
如果對于多個文件,可以使用下面的。
yarn test --testPathIgnorePatterns=filename1 filename2

TA貢獻(xiàn)1851條經(jīng)驗(yàn) 獲得超4個贊
對于 Jest 覆蓋范圍中要忽略的單個文件,請放置以下行
/* istanbul ignore next */
忽略個別功能,請忽略上面的功能
/* istanbul ignore next */
const ignoreFunc =()=>{
console.log('This function will be ignored from coverage')
}

TA貢獻(xiàn)1998條經(jīng)驗(yàn) 獲得超6個贊
collectCoverageFrom
您可以像這樣使用Zest json 的參數(shù),
collectCoverageFrom:?['path-to-file1','path-to-file2'],
注意:此選項(xiàng)需要將collectCoverage設(shè)置為true或調(diào)用Jest--coverage.
在文檔中,他們指定了一種模式,但它也適用于文件靜態(tài)文件路徑。
添加回答
舉報(bào)