Readd skipped tests
Fix lint issue
This commit is contained in:
committed by
Hans Pagel
parent
a331d72383
commit
b3cf55d686
@@ -58,7 +58,7 @@ context('/demos/Examples/MarkdownShortcuts/Vue', () => {
|
|||||||
.should('contain', '$foobar')
|
.should('contain', '$foobar')
|
||||||
})
|
})
|
||||||
|
|
||||||
it.skip('should create a code block without language', () => {
|
it('should create a code block without language', () => {
|
||||||
cy.get('.ProseMirror')
|
cy.get('.ProseMirror')
|
||||||
.type('``` {enter}const foo = bar{enter}```')
|
.type('``` {enter}const foo = bar{enter}```')
|
||||||
.find('pre')
|
.find('pre')
|
||||||
@@ -86,14 +86,14 @@ context('/demos/Examples/MarkdownShortcuts/Vue', () => {
|
|||||||
.should('contain', 'foobar')
|
.should('contain', 'foobar')
|
||||||
})
|
})
|
||||||
|
|
||||||
it.skip('should create a ordered list', () => {
|
it('should create a ordered list', () => {
|
||||||
cy.get('.ProseMirror')
|
cy.get('.ProseMirror')
|
||||||
.type('1. foobar')
|
.type('1. foobar')
|
||||||
.find('ol')
|
.find('ol')
|
||||||
.should('contain', 'foobar')
|
.should('contain', 'foobar')
|
||||||
})
|
})
|
||||||
|
|
||||||
it.skip('should create a blockquote', () => {
|
it('should create a blockquote', () => {
|
||||||
cy.get('.ProseMirror')
|
cy.get('.ProseMirror')
|
||||||
.type('> foobar')
|
.type('> foobar')
|
||||||
.find('blockquote')
|
.find('blockquote')
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ context('/demos/Extensions/History', () => {
|
|||||||
cy.get('.ProseMirror')
|
cy.get('.ProseMirror')
|
||||||
.trigger('keydown', { modKey: true, key: 'z' })
|
.trigger('keydown', { modKey: true, key: 'z' })
|
||||||
|
|
||||||
|
|
||||||
cy.get('.ProseMirror')
|
cy.get('.ProseMirror')
|
||||||
.should('not.contain', 'Mistake')
|
.should('not.contain', 'Mistake')
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ context('/demos/Nodes/HardBreak', () => {
|
|||||||
.should('exist')
|
.should('exist')
|
||||||
})
|
})
|
||||||
|
|
||||||
it.skip('the default keyboard shortcut should add a line break', () => {
|
it('the default keyboard shortcut should add a line break', () => {
|
||||||
cy.get('.ProseMirror br')
|
cy.get('.ProseMirror br')
|
||||||
.should('not.exist')
|
.should('not.exist')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user