add test and docs config
All checks were successful
Build Docker Image Front / run (push) Successful in 21s
Build Docker Image Back / run (push) Successful in 20s
Build Docker Image Front / run (pull_request) Successful in 22s
Build Docker Image Back / run (pull_request) Successful in 21s

This commit is contained in:
2024-05-03 17:09:34 +02:00
parent 94b2ce2d16
commit 120ed8182a
6 changed files with 1645 additions and 13 deletions

View File

@ -0,0 +1,13 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
collectCoverage: true,
coverageDirectory: 'coverage',
collectCoverageFrom: [
'**/*.ts',
'!/nodemodules/',
'!/jest.config.js/',
'!/coverage/',
],
};