mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-21 09:56:09 -07:00
13 lines
325 B
TypeScript
13 lines
325 B
TypeScript
module.exports = {
|
|
clearMocks: true,
|
|
testEnvironment: 'node',
|
|
moduleFileExtensions: ['js', 'ts'],
|
|
testMatch: ['**/*.test.ts'],
|
|
transform: {
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
collectCoverageFrom: ['src/**/{!(main.ts),}.ts'],
|
|
coveragePathIgnorePatterns: ['dist/', 'node_modules/', '__tests__/'],
|
|
verbose: true
|
|
};
|