diff --git a/apps/todo/apps/web/src/lib/utils/task-filters.test.ts b/apps/todo/apps/web/src/lib/utils/task-filters.test.ts index 72d9e256b..b4fe46383 100644 --- a/apps/todo/apps/web/src/lib/utils/task-filters.test.ts +++ b/apps/todo/apps/web/src/lib/utils/task-filters.test.ts @@ -1,7 +1,21 @@ import { describe, it, expect } from 'vitest'; -import type { Task } from '@todo/shared'; +import type { Task, Label } from '@todo/shared'; import { applyTaskFilters, type TaskFilterCriteria } from './task-filters'; +const now = new Date().toISOString(); + +function makeLabel(overrides: Partial