add basic highlight extension

This commit is contained in:
Hans Pagel
2020-10-02 15:28:00 +02:00
parent f96dca37d6
commit 1fc7a6b37e
7 changed files with 182 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
context('/api/extensions/highlight', () => {
before(() => {
cy.visit('/api/extensions/highlight')
})
beforeEach(() => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.setContent('<p>Example Text</p>')
editor.selectAll()
})
})
it('the button should highlight the selected text', () => {
cy.get('.demo__preview button:first')
.click()
cy.get('.ProseMirror')
.find('mark')
.should('contain', 'Example Text')
})
it('the button should toggle the selected text highlighted', () => {
cy.get('.demo__preview button:first')
.click()
cy.get('.ProseMirror')
.type('{selectall}')
cy.get('.demo__preview button:first')
.click()
cy.get('.ProseMirror')
.find('mark')
.should('not.exist')
})
it('the keyboard shortcut should highlight the selected text', () => {
cy.get('.ProseMirror')
.trigger('keydown', { modKey: true, key: 'e' })
.find('mark')
.should('contain', 'Example Text')
})
it('the keyboard shortcut should toggle the selected text highlighted', () => {
cy.get('.ProseMirror')
.trigger('keydown', { modKey: true, key: 'e' })
.trigger('keydown', { modKey: true, key: 'e' })
.find('mark')
.should('not.exist')
})
})