第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在玩笑中跳過文件執(zhí)行?

如何在玩笑中跳過文件執(zhí)行?

蝴蝶刀刀 2023-09-14 22:06:34
我正在使用 jest 進(jìn)行集成測試,其中一個文件夾下有 20 個測試文件。我需要確保在運(yùn)行測試時不需要執(zhí)行該文件夾中的三個文件。我嘗試使用testPathIgnorePatterns但它僅適用于文件夾而不適用于文件。怎么做?笑話配置.js/** * @file Jest Integration Test Configuration File */module.exports = {  roots: ['../../tests'],  testRegex: '_*_integration.test.(js|ts|tsx)?$',  globals: {    'ts-jest': {      tsconfig: 'tsconfig.json',    },  },  moduleFileExtensions: ['ts', 'js'],  transform: {    '^.+\\.(ts|tsx)$': 'ts-jest',  },  testPathIgnorePatterns: ['tests/api/modules/m3/sample.test.ts'],  testEnvironment: 'node',  reporters: [    'default',    [      '../../node_modules/jest-html-reporter',      {        pageTitle: 'Integration Test Report',        outputPath: 'tests/reports/integration-test-report.html',        includeFailureMsg: true,      },    ],  ],};
查看完整描述

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


查看完整回答
反對 回復(fù) 2023-09-14
?
繁花不似錦

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')

}


查看完整回答
反對 回復(fù) 2023-09-14
?
米琪卡哇伊

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)文件路徑。


查看完整回答
反對 回復(fù) 2023-09-14
  • 3 回答
  • 0 關(guān)注
  • 177 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號