(app: MockApp, path: string, frontmatter: Record<string, unknown>)
| 45 | } |
| 46 | |
| 47 | function createFile(app: MockApp, path: string, frontmatter: Record<string, unknown>): void { |
| 48 | const file = new TFile(path); |
| 49 | app.__files.set(path, file); |
| 50 | app.__metadata.set(path, { frontmatter }); |
| 51 | } |
| 52 | |
| 53 | function createTaskManager(app: MockApp): TaskManager { |
| 54 | return new TaskManager( |
no test coverage detected