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

- added e2e tests for - banner - history - intro - language - link - added e2e workflow - added cypress badge to README
15 lines
349 B
TypeScript
15 lines
349 B
TypeScript
// eslint-disable-next-line @typescript-eslint/no-namespace
|
|
declare namespace Cypress {
|
|
interface Chainable {
|
|
/**
|
|
* Custom command to log the user out.
|
|
* @example cy.logout()
|
|
*/
|
|
logout (): Chainable<Window>
|
|
}
|
|
}
|
|
|
|
Cypress.Commands.add('logout', () => {
|
|
cy.get('#dropdown-user').click()
|
|
cy.get('.fa-sign-out').click()
|
|
})
|