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