defaults to force: true for type and click

This commit is contained in:
Philipp Kühn
2020-09-15 09:03:08 +02:00
parent 71cc626b0a
commit 00506e359b
14 changed files with 94 additions and 63 deletions

View File

@@ -11,91 +11,91 @@ context('/examples/markdown-shortcuts', () => {
it('should make a h1', () => {
cy.get('.ProseMirror')
.type('# Headline', { force: true })
.type('# Headline')
.find('h1')
.should('contain', 'Headline')
})
it('should make a h2', () => {
cy.get('.ProseMirror')
.type('## Headline', { force: true })
.type('## Headline')
.find('h2')
.should('contain', 'Headline')
})
it('should make a h3', () => {
cy.get('.ProseMirror')
.type('### Headline', { force: true })
.type('### Headline')
.find('h3')
.should('contain', 'Headline')
})
it('should make a h4', () => {
cy.get('.ProseMirror')
.type('#### Headline', { force: true })
.type('#### Headline')
.find('h4')
.should('contain', 'Headline')
})
it('should make a h5', () => {
cy.get('.ProseMirror')
.type('##### Headline', { force: true })
.type('##### Headline')
.find('h5')
.should('contain', 'Headline')
})
it('should make a h6', () => {
cy.get('.ProseMirror')
.type('###### Headline', { force: true })
.type('###### Headline')
.find('h6')
.should('contain', 'Headline')
})
it('should create inline code', () => {
cy.get('.ProseMirror')
.type('`$foobar`', { force: true })
.type('`$foobar`')
.find('code')
.should('contain', '$foobar')
})
it.skip('should create a code block without language', () => {
cy.get('.ProseMirror')
.type('``` {enter}const foo = bar{enter}```', { force: true })
.type('``` {enter}const foo = bar{enter}```')
.find('pre')
.should('contain', 'const foo = bar')
})
it.skip('should create a bullet list from asteriks', () => {
cy.get('.ProseMirror')
.type('* foobar', { force: true })
.type('* foobar')
.find('ul')
.should('contain', 'foobar')
})
it.skip('should create a bullet list from dashes', () => {
cy.get('.ProseMirror')
.type('- foobar', { force: true })
.type('- foobar')
.find('ul')
.should('contain', 'foobar')
})
it.skip('should create a bullet list from pluses', () => {
cy.get('.ProseMirror')
.type('+ foobar', { force: true })
.type('+ foobar')
.find('ul')
.should('contain', 'foobar')
})
it.skip('should create a ordered list', () => {
cy.get('.ProseMirror')
.type('1. foobar', { force: true })
.type('1. foobar')
.find('ol')
.should('contain', 'foobar')
})
it.skip('should create a blockquote', () => {
cy.get('.ProseMirror')
.type('> foobar', { force: true })
.type('> foobar')
.find('blockquote')
.should('contain', 'foobar')
})