mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-23 09:31:52 -04:00
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testMatch: ["**/test/**/*.[jt]s?(x)"],
|
|
testEnvironment: 'node',
|
|
collectCoverage: true,
|
|
coveragePathIgnorePatterns: ['node_modules'],
|
|
testTimeout: 4 * 60 * 1000, // 4 minutes
|
|
};
|