import { describe, expect, it } from 'vitest'; import { buildTaskSummary } from './taskSummary'; describe('buildTaskSummary', () => { it('returns summary counts', () => { const summary = buildTaskSummary({ assigned: 3, library: 5, collections: 2, emotions: 4 }); expect(summary).toEqual({ assigned: 3, library: 5, collections: 2, emotions: 4 }); }); });