This commit is contained in:
Henry Jameson 2026-08-04 19:20:51 +03:00
commit ef8a407643
7 changed files with 35 additions and 18 deletions

View file

@ -363,7 +363,10 @@ describe('RichContent', () => {
})
expect(
wrapper.html().replaceAll('\n', '').replaceAll(/<!--.*?-->/g, ''),
wrapper
.html()
.replaceAll('\n', '')
.replaceAll(/<!--.*?-->/g, ''),
).to.eql(compwrap(expected))
})
@ -433,7 +436,10 @@ describe('RichContent', () => {
})
expect(
wrapper.html().replaceAll('\n', '').replaceAll(/<!--.*?-->/g, ''),
wrapper
.html()
.replaceAll('\n', '')
.replaceAll(/<!--.*?-->/g, ''),
).to.eql(compwrap(expected))
})