fixes
This commit is contained in:
parent
95bbe73832
commit
665849615c
7 changed files with 10 additions and 16 deletions
|
|
@ -363,7 +363,7 @@ describe('RichContent', () => {
|
|||
})
|
||||
|
||||
expect(
|
||||
wrapper.html().replaceAll('\n', '').replaceAll('<!--.*?-->', ''),
|
||||
wrapper.html().replaceAll('\n', '').replaceAll(/<!--.*?-->/g, ''),
|
||||
).to.eql(compwrap(expected))
|
||||
})
|
||||
|
||||
|
|
@ -433,7 +433,7 @@ describe('RichContent', () => {
|
|||
})
|
||||
|
||||
expect(
|
||||
wrapper.html().replaceAll('\n', '').replaceAll('<!--.*?-->', ''),
|
||||
wrapper.html().replaceAll('\n', '').replaceAll(/<!--.*?-->/g, ''),
|
||||
).to.eql(compwrap(expected))
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue