mirror of
https://github.com/nextcloud/server.git
synced 2025-02-22 07:59:13 +00:00
13 lines
381 B
TypeScript
13 lines
381 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { jest } from '@jest/globals'
|
|
|
|
export const showMessage = jest.fn()
|
|
export const showSuccess = jest.fn()
|
|
export const showWarning = jest.fn()
|
|
export const showInfo = jest.fn()
|
|
export const showError = jest.fn()
|
|
export const showUndo = jest.fn()
|