/** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { preset: 'ts-jest', testEnvironment: 'node', roots: ['/tests'], testMatch: ['**/*.performance.test.ts'], collectCoverage: false, verbose: true, transform: { '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json', }], }, moduleNameMapper: { '^@/(.*)$': '/src/$1', }, setupFilesAfterEnv: ['/tests/setup.ts'], // 性能测试需要更长的超时时间 testTimeout: 60000, clearMocks: true, restoreMocks: true, modulePathIgnorePatterns: [ '/bin/', '/dist/', '/node_modules/' ] };