(commandPath: string)
| 7 | import type { TaskNotesSettings } from "../../../src/types/settings"; |
| 8 | |
| 9 | function createSettings(commandPath: string): TaskNotesSettings { |
| 10 | return { |
| 11 | ...DEFAULT_SETTINGS, |
| 12 | commandFileMapping: { |
| 13 | ...DEFAULT_SETTINGS.commandFileMapping, |
| 14 | "open-tasks-view": commandPath, |
| 15 | }, |
| 16 | }; |
| 17 | } |
| 18 | |
| 19 | describe("default Bases file writes", () => { |
| 20 | it("creates parent folders before writing missing generated Base files", async () => { |
no outgoing calls
no test coverage detected