From 17dd2843668626e532fb3d082d102ba647f74c59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Sat, 14 Nov 2020 17:38:49 +0100 Subject: [PATCH] fix tests --- docs/src/demos/Marks/Link/index.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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('

Example Text

') - expect(editor.getHTML()).to.eq('

Example Text

') + expect(editor.getHTML()).to.eq('

Example Text

') }) }) it('should parse a tags with target attribute correctly', () => { cy.get('.ProseMirror').then(([{ editor }]) => { editor.commands.setContent('

Example Text

') - expect(editor.getHTML()).to.eq('

Example Text

') + expect(editor.getHTML()).to.eq('

Example Text

') }) }) it('should parse a tags with rel attribute correctly', () => { cy.get('.ProseMirror').then(([{ editor }]) => { editor.commands.setContent('

Example Text

') - expect(editor.getHTML()).to.eq('

Example Text

') + expect(editor.getHTML()).to.eq('

Example Text

') }) })