| 1 | import { describe, it, expect } from 'vitest'; |
| 2 | import { buildMaintainStats, suggestNextScopes, recommendNextScope, weeklyReport, trendByWeek, projectMonthly, forecastTrend } from '../src/cli/maintain-stats.ts'; |
| 3 | |
| 4 | const R = (scope: string, status: string, filesChanged = 0, when = '1h ago', at?: string) => ({ scope, status, filesChanged, when, at }); |
nothing calls this directly
no test coverage detected