forked from nextcloud/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.d.ts
32 lines (30 loc) · 884 Bytes
/
cypress.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
/* eslint-disable */
import { mount } from '@cypress/vue2'
type MountParams = Parameters<typeof mount>;
type OptionsParam = MountParams[1];
declare global {
namespace Cypress {
interface Chainable {
mount: typeof mount;
/**
* Mock an initial state for component testing
*
* @param app App name of the initial state
* @param key Key of the initial state
* @param value The mocked value of the initial state
*/
mockInitialState: (app: string, key: string, value: any) => void
/**
* Unmock all initial states or one defined by app and key
*
* @param app app name of the initial state
* @param key the key of the initial state
*/
unmockInitialState: (app?: string, key?: string) => void
}
}
}