mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 02:06:29 -05:00
f3bf7cd105
Signed-off-by: Philip Molares <philip.molares@udo.edu>
21 lines
475 B
TypeScript
21 lines
475 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
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')
|
|
})
|
|
})
|