mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-01-05 21:42:01 +00:00
15 lines
347 B
TypeScript
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')
|
|
})
|
|
})
|