add action

This commit is contained in:
Kersten Kriegbaum 2025-05-24 22:43:44 +02:00
commit d27be8e73d
102 changed files with 53613 additions and 0 deletions

12
jest.config.js Normal file
View file

@ -0,0 +1,12 @@
module.exports = {
clearMocks: true,
fakeTimers: {},
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}