/* * 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 } } 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) } })