Fix renderer type test (#1647)

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2021-11-21 12:48:30 +01:00 committed by GitHub
parent abceb356db
commit a96b06c95b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 40 additions and 16 deletions

View file

@ -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')
})
})