Files
terminal-layout-sync/jest.config.js
7000pctAUTO 0cdd5d4985
Some checks failed
CI / test (push) Has been cancelled
Initial upload with CI/CD workflow
2026-02-05 19:31:32 +00:00

23 lines
472 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/tests'],
testMatch: ['**/*.test.ts'],
testPathIgnorePatterns: [
'/node_modules/',
'/tests/integration/',
'/tests/e2e/'
],
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1'
},
collectCoverageFrom: [
'src/**/*.ts',
'!src/**/*.d.ts',
'!src/index.ts'
],
coverageDirectory: 'coverage',
coverageReporters: ['text', 'lcov'],
verbose: true
};