10
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2026-04-14 10:34:47 +00:00

Added L0 tests and fixed some minor issues. (#20)

This commit is contained in:
Sundar 2021-03-26 13:08:55 +05:30 committed by GitHub
parent d315e938e1
commit e77e49c8f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 6335 additions and 20 deletions

18
jest.config.js Normal file
View file

@ -0,0 +1,18 @@
module.exports = {
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
}
}
}