fix: Rename files to correct paths (remove leading dots)
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-03 08:05:32 +00:00
parent 94306bd8e5
commit c1b44784cf

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'
}
};