mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-26 03:51:34 +00:00
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
|
/*
|
||
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||
|
*
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
describe("Slideshow only page", () => {
|
||
|
it('renders slide show mode', () => {
|
||
|
cy.visit('/p/test')
|
||
|
cy.getReveal().should("exist")
|
||
|
})
|
||
|
})
|