module.exports = { preset: 'ts-jest', rootDir: 'src', testMatch: ['/tests-microblocks/*.ts'], testPathIgnorePatterns: ['/tests-microblocks/setup.ts', '/tests-microblocks/teardown.ts'], collectCoverageFrom: ['/**/*.ts'], coveragePathIgnorePatterns: ['/tests*'], coverageDirectory: '../coverage', globalSetup: '/tests-microblocks/setup.ts', globalTeardown: '/tests-microblocks/teardown.ts', testTimeout: 5000, }