Add tests & test dependencies

This commit is contained in:
Ryan Ghadimi 2025-03-19 11:17:03 +00:00
parent c7cfc3a2a3
commit 96a6f165f4
5 changed files with 8464 additions and 94 deletions

12
jest.config.ts Normal file
View file

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