feat: setup jest to ignore dist folder
All checks were successful
CI Pipeline / build-and-test (push) Successful in 1m38s
CI Pipeline / publish (push) Successful in 20s

This commit is contained in:
Leandro Costa 2025-06-27 14:13:34 -03:00
parent 86704b83b1
commit 5290488dba
2 changed files with 6 additions and 5 deletions

View file

@ -1,5 +1,6 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
};
preset: "ts-jest",
testEnvironment: "node",
testPathIgnorePatterns: ["<rootDir>/dist/", "<rootDir>/node_modules/"],
};