diff --git a/docs/src/demos/Marks/Link/index.spec.js b/docs/src/demos/Marks/Link/index.spec.js index 39c5b313..f4124bf2 100644 --- a/docs/src/demos/Marks/Link/index.spec.js +++ b/docs/src/demos/Marks/Link/index.spec.js @@ -13,21 +13,21 @@ context('/api/marks/link', () => { it('should parse a tags correctly', () => { cy.get('.ProseMirror').then(([{ editor }]) => { editor.commands.setContent('
') - expect(editor.getHTML()).to.eq('') + expect(editor.getHTML()).to.eq('') }) }) it('should parse a tags with target attribute correctly', () => { cy.get('.ProseMirror').then(([{ editor }]) => { editor.commands.setContent('') - expect(editor.getHTML()).to.eq('') + expect(editor.getHTML()).to.eq('') }) }) it('should parse a tags with rel attribute correctly', () => { cy.get('.ProseMirror').then(([{ editor }]) => { editor.commands.setContent('') - expect(editor.getHTML()).to.eq('') + expect(editor.getHTML()).to.eq('') }) })