mirror of
https://github.com/nextcloud/server.git
synced 2026-04-24 07:39:23 -04:00
12 lines
328 B
TypeScript
12 lines
328 B
TypeScript
|
|
/*!
|
||
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
||
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Ensure the downloads folder is deleted before each test
|
||
|
|
*/
|
||
|
|
export function deleteDownloadsFolderBeforeEach() {
|
||
|
|
beforeEach(() => cy.task('deleteFolder', Cypress.config('downloadsFolder')))
|
||
|
|
}
|