2020-11-22 15:50:07 -05:00
|
|
|
/*
|
2021-01-06 15:37:59 -05:00
|
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
2020-11-22 15:50:07 -05:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-11-01 15:38:17 -05:00
|
|
|
describe('Help Dialog', () => {
|
|
|
|
beforeEach(() => {
|
2022-01-30 15:46:43 -05:00
|
|
|
cy.visitTestNote()
|
2020-11-01 15:38:17 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('ToDo-List', () => {
|
2021-12-25 10:44:24 -05:00
|
|
|
cy.getByCypressId('editor-help-button').click()
|
2021-11-19 12:04:04 -05:00
|
|
|
cy.get('input[type="checkbox"]').should('exist').should('not.be.checked')
|
2020-11-01 15:38:17 -05:00
|
|
|
})
|
|
|
|
})
|