Files
plugin-drone-ksm/jest.config.js
Hitesh Borase 1462420c40 unit testing
2026-01-15 17:55:52 +05:30

21 lines
405 B
JavaScript

module.exports = {
testEnvironment: 'node',
collectCoverageFrom: [
'src/**/*.js',
'!src/**/*.test.js',
],
coverageThreshold: {
global: {
branches: 100,
functions: 100,
lines: 100,
statements: 100,
},
},
testMatch: [
'**/__tests__/**/*.js',
'**/*.test.js',
],
verbose: true,
};