diff options
Diffstat (limited to '__mocks__/webdav.ts')
-rw-r--r-- | __mocks__/webdav.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/__mocks__/webdav.ts b/__mocks__/webdav.ts new file mode 100644 index 00000000000..7f56c7000b0 --- /dev/null +++ b/__mocks__/webdav.ts @@ -0,0 +1,10 @@ +/** + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +export const createClient = () => {} +export const getPatcher = () => { + return { + patch: () => {} + } +} |