hedgedoc/cypress/integration/slideshow-only-page.spec.ts
Tilman Vatteroth ca5dae3f82 Add new visit functions in e2e tests
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2022-01-30 22:13:41 +01:00

14 lines
342 B
TypeScript

/*
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { PAGE_MODE } from '../support/visit'
describe('Slideshow only page', () => {
it('renders slide show mode', () => {
cy.visitTestNote(PAGE_MODE.PRESENTATION)
cy.getReveal().should('exist')
})
})