formatting

This commit is contained in:
Philipp Kühn
2020-09-11 18:45:16 +02:00
parent 7350f52392
commit cc0695feb6

View File

@@ -5,6 +5,7 @@ context('/examples/markdown-shortcuts', () => {
beforeEach(() => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.focus()
editor.clearContent()
})
})
@@ -77,13 +78,13 @@ context('/examples/markdown-shortcuts', () => {
it.skip('should create a ordered list', () => {
cy.get('.ProseMirror')
.type('1. foobar', { force: true })
.contains('ol', 'foobar')
.type('1. foobar', { force: true })
.contains('ol', 'foobar')
})
it.skip('should create a blockquote', () => {
cy.get('.ProseMirror')
.type('> foobar', { force: true })
.contains('blockquote', 'foobar')
.type('> foobar', { force: true })
.contains('blockquote', 'foobar')
})
})