()
| 24 | } |
| 25 | |
| 26 | async function setUpUser(): Promise<{ user: User; userRootPath: string }> { |
| 27 | const userId = crypto.randomUUID(); |
| 28 | const userRootPath = join(tempRootDir, userId); |
| 29 | await Deno.mkdir(userRootPath, { recursive: true }); |
| 30 | return { user: createMockUser(userId), userRootPath }; |
| 31 | } |
| 32 | |
| 33 | async function callDav( |
| 34 | method: string, |
no test coverage detected