mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-26 11:43:59 -05:00
28600d6508
* Change copyright year from 2020 to 2021 Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de> * Change copyright year in jetbrains copyright template Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
23 lines
599 B
TypeScript
23 lines
599 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
|
declare namespace Cypress {
|
|
interface Chainable {
|
|
/**
|
|
* Custom command to fill an input field with text and trigger a change event.
|
|
* @example cy.get(input).fill('content')
|
|
*/
|
|
fill (value: string): Chainable<Element>
|
|
}
|
|
}
|
|
|
|
Cypress.Commands.add('fill', {
|
|
prevSubject: 'element'
|
|
}, (subject, value) => {
|
|
cy.wrap(subject).invoke('val', value)
|
|
.trigger('change', { force: true })
|
|
})
|