mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 10:16:32 -05:00
908a5ce984
Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
19 lines
389 B
TypeScript
19 lines
389 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
describe('Help Dialog', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/n/test')
|
|
})
|
|
|
|
it('ToDo-List', () => {
|
|
cy.get('.fa.fa-question-circle')
|
|
.click()
|
|
cy.get('input[type="checkbox"]')
|
|
.should('exist')
|
|
.should('not.be.checked')
|
|
})
|
|
})
|