diff options
| author | Henry Jameson <me@hjkos.com> | 2021-08-15 18:11:57 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2021-08-15 18:11:57 +0300 |
| commit | 5431d8fe55ac43cee7af371c31fe610b6f9c1a7a (patch) | |
| tree | 796ae6fd766e8981df11a11749792f1611e90b04 /test/unit/specs/components/rich_content.spec.js | |
| parent | 6aa6f6f300d2f9de1e6c70a67b9459ae4c4b5a8f (diff) | |
| parent | 8cc1ad67dff93b5faa1ed1bab663d16748eec68d (diff) | |
Merge branch 'better-still-emoji' into proper-attachments
* better-still-emoji:
fix links sticking to mentionsline
Diffstat (limited to 'test/unit/specs/components/rich_content.spec.js')
| -rw-r--r-- | test/unit/specs/components/rich_content.spec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/specs/components/rich_content.spec.js b/test/unit/specs/components/rich_content.spec.js index b29edeab..c84df34b 100644 --- a/test/unit/specs/components/rich_content.spec.js +++ b/test/unit/specs/components/rich_content.spec.js @@ -59,7 +59,7 @@ describe('RichContent', () => { it('replaces mention with mentionsline', () => { const html = p( makeMention('John'), - ' how are you doing today?' + ' how are you doing today?' // also testing single-trimming function ) const wrapper = shallowMount(RichContent, { localVue, @@ -74,7 +74,7 @@ describe('RichContent', () => { expect(wrapper.html()).to.eql(compwrap(p( mentionsLine(1), - ' how are you doing today?' + ' how are you doing today?' // space removed to compensate for <ML> padding ))) }) |
