2021-07-02 16:06:02 +08:00
|
|
|
module.exports = {
|
2021-09-22 18:59:50 +08:00
|
|
|
maxWorkers: '50%',
|
|
|
|
testMatch: ['<rootDir>/__tests__/**/**.spec.[jt]s?(x)'],
|
|
|
|
testPathIgnorePatterns: ['/node_modules/', '/lib/', '<rootDir>/lib/'],
|
2021-07-02 16:06:02 +08:00
|
|
|
collectCoverage: Boolean(process.env.COVERAGE),
|
2021-09-22 18:59:50 +08:00
|
|
|
collectCoverageFrom: ['<rootDir>/src/**/*.ts?(x)'],
|
|
|
|
coveragePathIgnorePatterns: ['generated'],
|
2021-11-01 23:43:27 +08:00
|
|
|
/**
|
|
|
|
* Since we use a lot of denepencies as ES moules, we need configure
|
|
|
|
* jest to transform the files in node_modules which export as
|
|
|
|
* ES modules.
|
|
|
|
* The list can be very long if we enumerate dependencies as a whitelist,
|
|
|
|
* so we use a blacklist to ignore certain dependencies that should
|
|
|
|
* not be transformed.
|
|
|
|
* This may cause performance issue.
|
|
|
|
*/
|
|
|
|
transformIgnorePatterns: [`/node_modules/(jest|@testing-library)`],
|
2021-07-02 16:06:02 +08:00
|
|
|
};
|