🕌

備忘: jestでカバレッジから特定のファイル・フォルダを除外する方法

2023/02/05に公開
// jest.config.js
module.exports = {
  coveragePathIgnorePatterns: [
    '/notest/',
  ],
};

Discussion