Support Jest tests in model packages (#9769)

This commit is contained in:
Artyom Savchenko
2025-09-04 11:01:50 +07:00
committed by GitHub
parent a4862cf438
commit 11f94ccf3e
187 changed files with 3084 additions and 873 deletions
@@ -0,0 +1,7 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/?(*.)+(spec|test).[jt]s?(x)'],
roots: ["./src"],
coverageReporters: ["text-summary", "html"]
}