From 8d11dbcf36c09ceb4956f2c4a8627564192a39cb Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 20:27:34 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- jest.config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 jest.config.js diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..2626780 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,12 @@ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + roots: ['/tests'], + testMatch: ['**/*.test.ts'], + collectCoverageFrom: ['src/**/*.ts', '!src/**/*.d.ts'], + coverageDirectory: 'coverage', + moduleFileExtensions: ['ts', 'js', 'json'], + transform: { + '^.+\\.ts$': 'ts-jest' + } +};