mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-01-07 12:01:10 +00:00
16 lines
347 B
TypeScript
16 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')
|
||
|
})
|
||
|
})
|