Files
huly-platform/packages/client/jest.config.js
T
2025-10-08 20:37:54 +07:00

9 lines
250 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/?(*.)+(spec|test).[jt]s?(x)'],
roots: ['./src'],
coverageReporters: ['text-summary', 'html', 'lcov'],
testTimeout: 10000 // 10 seconds timeout for all tests
}