test first commit

This commit is contained in:
2026-02-06 16:48:34 +00:00
commit e6b5b1f3f8
5 changed files with 5781 additions and 0 deletions

17
jest.config.js Normal file
View File

@@ -0,0 +1,17 @@
module.exports = {
testEnvironment: 'node',
coverageDirectory: 'coverage',
collectCoverageFrom: [
'src/**/*.js',
'!src/init.sql'
],
testMatch: ['**/tests/**/*.test.js'],
coverageThreshold: {
global: {
branches: 50,
functions: 50,
lines: 50,
statements: 50
}
}
};