mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-14 07:04:45 -04:00
Fix renderer type test (#1647)
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
abceb356db
commit
a96b06c95b
6 changed files with 40 additions and 16 deletions
|
@ -11,27 +11,22 @@ describe('Renderer mode', () => {
|
|||
|
||||
it("should be 'document' without type specified", () => {
|
||||
cy.getMarkdownBody().should('exist')
|
||||
cy.getReveal().should('not.exist')
|
||||
})
|
||||
|
||||
it("should be 'reveal.js' with type 'slide'", () => {
|
||||
cy.setCodemirrorContent('---\ntype: slide\n---\n')
|
||||
cy.getMarkdownBody().should('not.exist')
|
||||
cy.getReveal().should('exist')
|
||||
})
|
||||
|
||||
it("should be 'document' with invalid type", () => {
|
||||
cy.setCodemirrorContent('---\ntype: EinDokument\n---\n')
|
||||
cy.getMarkdownBody().should('exist')
|
||||
cy.getReveal().should('not.exist')
|
||||
})
|
||||
|
||||
it("should change from 'reveal.js' to 'document' if changed from 'slide' to something else", () => {
|
||||
cy.setCodemirrorContent('---\ntype: slide\n---\n')
|
||||
cy.getMarkdownBody().should('not.exist')
|
||||
cy.getReveal().should('exist')
|
||||
cy.setCodemirrorContent('')
|
||||
cy.getMarkdownBody().should('exist')
|
||||
cy.getReveal().should('not.exist')
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue