()
| 211 | |
| 212 | describe("applyTemplateToNote (non-interactive)", () => { |
| 213 | function makeFile(): TFile { |
| 214 | const file = new TFile(); |
| 215 | file.path = "notes/My note.md"; |
| 216 | file.basename = "My note"; |
| 217 | file.extension = "md"; |
| 218 | return file; |
| 219 | } |
| 220 | |
| 221 | function makeApp(noteContent: string, activeFile: TFile | null): App { |
| 222 | return { |
no outgoing calls
no test coverage detected