From 0cdd5d4985630701488d6777a358a883f2a8ca06 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 19:31:32 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- jest.config.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 jest.config.js diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..1576c95 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,22 @@ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + roots: ['/tests'], + testMatch: ['**/*.test.ts'], + testPathIgnorePatterns: [ + '/node_modules/', + '/tests/integration/', + '/tests/e2e/' + ], + moduleNameMapper: { + '^@/(.*)$': '/src/$1' + }, + collectCoverageFrom: [ + 'src/**/*.ts', + '!src/**/*.d.ts', + '!src/index.ts' + ], + coverageDirectory: 'coverage', + coverageReporters: ['text', 'lcov'], + verbose: true +};