Initial commit: git-agent-sync CLI tool

This commit is contained in:
2026-02-03 07:53:15 +00:00
parent 00f8f9976c
commit 5e1d5d8cdc

19
.jest.config.js Normal file
View File

@@ -0,0 +1,19 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/tests'],
testMatch: ['**/*.test.ts'],
moduleFileExtensions: ['ts', 'js', 'json'],
collectCoverageFrom: [
'src/**/*.ts',
'!src/index.ts'
],
coverageDirectory: 'coverage',
verbose: true,
transformIgnorePatterns: [
'node_modules/(?!(execa|strip-final-newline)/)'
],
moduleNameMapper: {
'^execa$': '<rootDir>/tests/__mocks__/execa.js'
}
};