diff --git a/webapp/components/Editor/defaultExtensions.spec.js b/webapp/components/Editor/defaultExtensions.spec.js index 5bf8126b0..78924db55 100644 --- a/webapp/components/Editor/defaultExtensions.spec.js +++ b/webapp/components/Editor/defaultExtensions.spec.js @@ -35,7 +35,7 @@ describe('defaultExtensions', () => { it('renders mentioning as link', () => { const editor = createEditor() const expected = - '
This is a post content mentioning @alicia-luettgen.
' + 'This is a post content mentioning @alicia-luettgen.
' expect(editor.getHTML()).toEqual(expected) }) }) @@ -49,7 +49,7 @@ describe('defaultExtensions', () => { it('renders hashtag as link', () => { const editor = createEditor() const expected = - 'This is a post content with a hashtag #metoo.
' + 'This is a post content with a hashtag #metoo.
' expect(editor.getHTML()).toEqual(expected) }) })