diff options
| author | Henry Jameson <me@hjkos.com> | 2021-08-18 21:17:51 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2021-08-18 21:17:51 +0300 |
| commit | c3576211cbbf9ada109c0869dcf4e4fc7b3ef925 (patch) | |
| tree | 6550d69d7a46ab7fc04e1bf9197fee567a1c4112 /test/unit/specs/components | |
| parent | cbb34e2b0e0ecd6b0b0040e0ab2dc2b8dfca3fa1 (diff) | |
fix tests
Diffstat (limited to 'test/unit/specs/components')
| -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 c84df34b..b29edeab 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?' // also testing single-trimming function + ' how are you doing today?' ) 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?' // space removed to compensate for <ML> padding + ' how are you doing today?' ))) }) |
