platform/server-plugins/templates/jest.config.js
Denis Bykhov 896ac1172b
ats automation (#4515)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2024-02-05 15:47:52 +07:00

8 lines
184 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/?(*.)+(spec|test).[jt]s?(x)'],
roots: ["./src"],
coverageReporters: ["text-summary", "html"]
}