build(tests): Adds jest to run tests

Milestone: none
Signed-off-by: Alix von Schirp <github@avonschirp.bootmedia.de>
This commit is contained in:
2025-04-15 11:22:21 +02:00
parent 2106734b88
commit 6a8cf528e3
4 changed files with 2265 additions and 0 deletions

7
jest.config.js Normal file
View File

@@ -0,0 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} **/
export default {
testEnvironment: "node",
transform: {
"^.+\.tsx?$": ["ts-jest", {}],
},
};