mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-17 18:05:42 +02:00
git-subtree-dir: foundations/core git-subtree-mainline:16b1109180git-subtree-split:4f31d1b326
9 lines
250 B
JavaScript
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
|
|
}
|