summaryrefslogtreecommitdiffstats
path: root/src/__mocks__/webdav.js
blob: 15d4e70d89681fcc4395d5993c9a83823c9c7ec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
// eslint-disable-next-line n/no-unpublished-import
import { createClient } from 'webdav'

jest.mock('webdav', () => ({
	createClient: jest.fn(),
}))

export { createClient }