mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 17:56:30 -05:00
6a6f6105b9
Upgrade to CodeMirror 6 Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
20 lines
566 B
TypeScript
20 lines
566 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import 'cypress-fill-command'
|
|
|
|
declare namespace Cypress {
|
|
interface Chainable {
|
|
setCodemirrorContent(value: string): Chainable<Element>
|
|
}
|
|
}
|
|
|
|
Cypress.Commands.add('setCodemirrorContent', (content: string) => {
|
|
const line = content.split('\n').find((value) => value !== '')
|
|
cy.get('.cm-editor').click().get('.cm-content').fill(content)
|
|
if (line) {
|
|
cy.get('.cm-editor').find('.cm-line').should('contain.text', line)
|
|
}
|
|
})
|