hedgedoc/cypress/integration/helpDialog.spec.ts
2020-11-01 21:38:17 +01:00

15 lines
347 B
TypeScript

describe('Help Dialog', () => {
beforeEach(() => {
cy.visit('/n/test')
cy.get('.btn.active.btn-outline-secondary > i.fa-columns')
.should('exist')
})
it('ToDo-List', () => {
cy.get('.fa.fa-question-circle')
.click()
cy.get('input[type="checkbox"]')
.should('exist')
.should('not.be.checked')
})
})