@iservu-inc/adf-cli
Version:
CLI tool for AgentDevFramework - AI-assisted development framework with multi-provider AI support
21 lines (20 loc) • 470 B
JavaScript
module.exports = {
testEnvironment: 'node',
testMatch: ['**/tests/**/*.test.js'],
collectCoverageFrom: [
'lib/frameworks/answer-quality-analyzer.js',
'lib/frameworks/progress-tracker.js',
'lib/frameworks/session-manager.js',
'!lib/**/*.test.js',
'!**/node_modules/**'
],
coverageThreshold: {
global: {
branches: 60,
functions: 70,
lines: 70,
statements: 70
}
},
testTimeout: 10000
};