mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-16 16:14:43 -04:00

* Add cy.getById method and run prettier Signed-off-by: Erik Michelson <github@erik.michelson.eu>
20 lines
440 B
TypeScript
20 lines
440 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
declare namespace Cypress {
|
|
interface Chainable {
|
|
/**
|
|
* Custom command to log the user out.
|
|
* @example cy.logout()
|
|
*/
|
|
logout(): Chainable<Window>
|
|
}
|
|
}
|
|
|
|
Cypress.Commands.add('logout', () => {
|
|
cy.getById('user-dropdown').click()
|
|
cy.getById('user-dropdown-sign-out-button').click()
|
|
})
|