Files
setup-kubectl/jest.config.js
T

19 lines
353 B
JavaScript
Raw Normal View History

2020-07-01 09:07:14 +05:30
module.exports = {
2022-06-27 15:31:07 -07:00
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true,
coverageThreshold: {
global: {
branches: 0,
functions: 14,
lines: 27,
statements: 27
}
}
2020-07-01 09:07:14 +05:30
}