(overrides: Partial<TaskInfo> = {})
| 6 | } from "../../../src/ui/taskCardPropertyAccess"; |
| 7 | |
| 8 | function createTask(overrides: Partial<TaskInfo> = {}): TaskInfo { |
| 9 | return { |
| 10 | title: "Property task", |
| 11 | status: "open", |
| 12 | priority: "normal", |
| 13 | path: "TaskNotes/Property task.md", |
| 14 | archived: false, |
| 15 | ...overrides, |
| 16 | }; |
| 17 | } |
| 18 | |
| 19 | function createContext(options: { |
| 20 | mapping?: Record<string, string | null | undefined>; |
no outgoing calls
no test coverage detected