(noteContent: string, activeFile: TFile | null)
| 219 | } |
| 220 | |
| 221 | function makeApp(noteContent: string, activeFile: TFile | null): App { |
| 222 | return { |
| 223 | workspace: { getActiveFile: () => activeFile }, |
| 224 | vault: { cachedRead: async () => noteContent }, |
| 225 | } as unknown as App; |
| 226 | } |
| 227 | |
| 228 | function makeExecutor(): IChoiceExecutor { |
| 229 | return { |
no outgoing calls
no test coverage detected