first commit

This commit is contained in:
2026-02-18 16:03:43 +07:00
commit c52ecd6514
54 changed files with 8270 additions and 0 deletions

13
jest.config.js Normal file
View File

@@ -0,0 +1,13 @@
module.exports = {
testEnvironment: 'node',
verbose: true,
collectCoverage: true,
coverageDirectory: 'coverage',
coveragePathIgnorePatterns: [
'/node_modules/',
'/tests/mocks/'
],
testMatch: [
'<rootDir>/tests/**/*.test.js'
]
};