chore: added basic jest testing support

also added an example test for the counter in the components.tsx file to demonstrate functionality of testing configuration. installed all dependencies for testing using --save-dev to make sure they are stored as dev dependencies

ref: N25B-212
This commit is contained in:
JGerla
2025-10-21 22:18:10 +02:00
parent b9ea7737b7
commit cbacf924f9
7 changed files with 4604 additions and 4 deletions

12
tsconfig.jest.json Normal file
View File

@@ -0,0 +1,12 @@
{
"extends": "./tsconfig.app.json",
"compilerOptions": {
"verbatimModuleSyntax": false,
"jsx": "react-jsx",
"module": "ESNext",
"target": "ES2022",
"allowJs": true,
"esModuleInterop": true
},
"include": ["test"]
}