mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 03:14:40 +03:00
8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
|
module.exports = {
|
||
|
preset: 'ts-jest',
|
||
|
testEnvironment: 'node',
|
||
|
testMatch: ['**/?(*.)+(spec|test).[jt]s?(x)'],
|
||
|
roots: ["./src"],
|
||
|
coverageReporters: ["text-summary", "html"]
|
||
|
}
|