fix typescript errors

This commit is contained in:
Hans Pagel
2020-11-23 16:18:18 +01:00
parent 5a1f8d7b6a
commit 0c284c5cb1
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ describe('clearContent', () => {
const command = editor.commands.clearContent()
expect(command).to.be.true
expect(command).to.be.eq(true)
})
it('clears the content when using clearContent', () => {

View File

@@ -17,7 +17,7 @@ describe('insertHTML', () => {
const command = editor.commands.insertHTML('<p>Cindy Lauper</p>')
expect(command).to.be.true
expect(command).to.be.eq(true)
})
it('appends the content when using insertHTML', () => {

View File

@@ -17,7 +17,7 @@ describe('setContent', () => {
const command = editor.commands.setContent('<p>Cindy Lauper</p>')
expect(command).to.be.true
expect(command).to.be.eq(true)
})
it('replaces the content when using setContent', () => {