module.exports = { 'moduleFileExtensions': [ 'ts', 'tsx', 'js', 'jsx', ], 'transform': { '\\.(ts|tsx)$': 'ts-jest', }, testEnvironment: 'jsdom', testMatch: ['**/*.test.(ts|tsx)'], setupFilesAfterEnv: ['./jest.setup.js'], testPathIgnorePatterns: ['/node_modules/'], slowTestThreshold: 40, };