24a3a128bc
* SetUp for L0 TestCases * Issue Fix * Issue Fix * Issue Fix * Issue Fix * Issue Fix * Issue Fix * Review comments fix: run npm install only with our build, npm install only dev for releases * Running code covrage only on PR of master and releases
18 lines
336 B
JavaScript
18 lines
336 B
JavaScript
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
|
|
}
|
|
}
|
|
}
|