move taskLists from full to basic renderer (#725)

This commit is contained in:
Philip Molares 2020-11-01 21:38:17 +01:00 committed by GitHub
parent c9fe4e4887
commit 0e058e16e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 30 additions and 16 deletions

View file

@ -0,0 +1,15 @@
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')
})
})