(overrides: Partial<TaskInfo> = {})
| 11 | const createMockApp = (mockApp: unknown): App => mockApp as App; |
| 12 | |
| 13 | function createTask(overrides: Partial<TaskInfo> = {}): TaskInfo { |
| 14 | return { |
| 15 | title: "Edit task", |
| 16 | status: "open", |
| 17 | priority: "normal", |
| 18 | path: "TaskNotes/Edit task.md", |
| 19 | archived: false, |
| 20 | contexts: [], |
| 21 | projects: [], |
| 22 | tags: [], |
| 23 | ...overrides, |
| 24 | }; |
| 25 | } |
| 26 | |
| 27 | const reviewField: UserMappedField = { |
| 28 | id: "review", |
no outgoing calls
no test coverage detected