Files
tiptap/docs/src/tests/core/commands/clearContent.spec.js
Philipp Kühn cdf9cc99e0 fix tests
2021-02-26 21:22:03 +01:00

26 lines
654 B
JavaScript

context('clearContent', () => {
before(() => {
cy.visit('/demos/Examples/Default/Vue')
})
it('returns true for the clearContent command', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.setContent('<p>Example Text</p>')
const command = editor.commands.clearContent()
expect(command).to.be.eq(true)
})
})
it('clears the content when using the clearContent command', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.setContent('<p>Example Text</p>')
editor.commands.clearContent()
expect(editor.getHTML()).to.be.eq('<p></p>')
})
})
})