hedgedoc/cypress/integration/document-read-only-page.spec.ts
Erik Michelson d725b65140
Cypress-IDs and prettier for tests (#1634)
* Add cy.getById method and run prettier

Signed-off-by: Erik Michelson <github@erik.michelson.eu>
2021-11-19 18:04:04 +01:00

12 lines
287 B
TypeScript

/*
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
describe('Document read only page', () => {
it('renders the document mode', () => {
cy.visit('/s/test')
cy.getMarkdownBody().should('exist')
})
})