(daysAgo: number)
| 56 | it('buckets opened runs into this-week vs prior-week from timestamps', () => { |
| 57 | const now = Date.parse('2026-07-01T00:00:00Z'); |
| 58 | const iso = (daysAgo: number) => new Date(now - daysAgo * 86_400_000).toISOString(); |
| 59 | const runs = [ |
| 60 | R('unused-imports', 'opened', 5, '', iso(1)), // this week |
| 61 | R('unused-imports', 'opened', 3, '', iso(3)), // this week |
no outgoing calls
no test coverage detected