Add comprehensive jest unit tests

This commit is contained in:
2025-07-31 09:30:21 +02:00
parent 61fc283193
commit 520dee397f
2 changed files with 130 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/Unittests.ts'],
transform: {
'^.+\\.tsx?$': 'ts-jest'
}
};