replace headline with heading

This commit is contained in:
Hans Pagel
2020-09-27 10:40:08 +02:00
parent eca9dcd40d
commit 13c95b602e
3 changed files with 9 additions and 9 deletions

View File

@@ -46,7 +46,7 @@ context('/api/extensions/heading', () => {
.should('contain', 'Example Text')
})
it('the button should toggle the headline', () => {
it('the button should toggle the heading', () => {
cy.get('.ProseMirror h1')
.should('not.exist')
@@ -64,7 +64,7 @@ context('/api/extensions/heading', () => {
.should('not.exist')
})
it('should make a headline from the default markdown shortcut', () => {
it('should make a heading from the default markdown shortcut', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.clearContent()
})