mirror of
https://github.com/Azure/k8s-set-context
synced 2025-09-23 03:58:23 +00:00

* updated action file with node16 * Code consistency using prettier and its workflow * Enforce Prettier * code fix * code fix * code fix Co-authored-by: Vidya Reddy <vidyareddy@microsoft.com>
20 lines
397 B
JavaScript
20 lines
397 B
JavaScript
module.exports = {
|
|
restoreMocks: true,
|
|
clearMocks: true,
|
|
resetMocks: true,
|
|
moduleFileExtensions: ['js', 'ts'],
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/*.test.ts'],
|
|
transform: {
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
verbose: true,
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 0,
|
|
functions: 40,
|
|
lines: 22,
|
|
statements: 22
|
|
}
|
|
}
|
|
}
|