Files
claude-hub/jest.config.js
Jonathan Flatt fc567071dd Initial commit
2025-05-20 17:01:59 +00:00

17 lines
505 B
JavaScript

module.exports = {
testEnvironment: 'node',
testMatch: [
'**/test/unit/**/*.test.js',
'**/test/integration/**/*.test.js',
'**/test/e2e/scenarios/**/*.test.js'
],
collectCoverage: true,
coverageReporters: ['text', 'lcov'],
coverageDirectory: 'coverage',
testTimeout: 30000, // Some tests might take longer due to container initialization
verbose: true,
reporters: [
'default',
['jest-junit', { outputDirectory: 'test-results/jest', outputName: 'results.xml' }]
],
};