(path: string, title = path)
| 13 | } from "../../../src/bases/taskListGrouping"; |
| 14 | |
| 15 | function task(path: string, title = path): TaskInfo { |
| 16 | return { |
| 17 | path, |
| 18 | title, |
| 19 | status: "todo", |
| 20 | priority: "normal", |
| 21 | } as TaskInfo; |
| 22 | } |
| 23 | |
| 24 | describe("taskListGrouping", () => { |
| 25 | it("builds path properties with cached formula outputs", () => { |
no outgoing calls
no test coverage detected