module.exports = { preset: 'ts-jest', testEnvironment: 'jsdom', roots: ['/tests'], testMatch: ['**/*.test.ts'], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], setupFilesAfterEnv: ['/tests/setup.ts'], collectCoverageFrom: [ 'src/**/*.{ts,tsx}', '!src/**/*.d.ts' ], moduleNameMapper: { '^@binect/js$': '/tests/__mocks__/@binect/js.ts' }, globals: { 'ts-jest': { tsconfig: 'tsconfig.test.json' } } };