mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-10 14:08:37 +08:00
31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
context('/api/extensions/paragraph', () => {
|
|
before(() => {
|
|
cy.visit('/api/extensions/paragraph')
|
|
})
|
|
|
|
beforeEach(() => {
|
|
cy.get('.ProseMirror').then(([{ editor }]) => {
|
|
editor.focus()
|
|
editor.clearContent()
|
|
})
|
|
})
|
|
|
|
it('text should be wrapped in a paragraph by default', () => {
|
|
cy.get('.ProseMirror').type('Example Text', { force: true })
|
|
cy.get('.ProseMirror').find('p').should('contain', 'Example Text')
|
|
})
|
|
|
|
it('enter should make a new paragraph', () => {
|
|
cy.get('.ProseMirror').type('First Paragraph{enter}Second Paragraph', { force: true })
|
|
cy.get('.ProseMirror').find('p').should('have.length', 2)
|
|
cy.get('.ProseMirror').find('p:first').should('contain', 'First Paragraph')
|
|
cy.get('.ProseMirror').find('p:nth-child(2)').should('contain', 'Second Paragraph')
|
|
})
|
|
|
|
it('backspace should remove the second paragraph', () => {
|
|
cy.get('.ProseMirror').type('{enter}', { force: true })
|
|
cy.get('.ProseMirror').find('p').should('have.length', 2)
|
|
cy.get('.ProseMirror').type('{backspace}', { force: true })
|
|
cy.get('.ProseMirror').find('p').should('have.length', 1)
|
|
})
|
|
}) |