replace all contains

This commit is contained in:
Philipp Kühn
2020-09-11 21:56:08 +02:00
parent 88d4d2216b
commit 66841f2fe2
12 changed files with 81 additions and 73 deletions

View File

@@ -3,11 +3,10 @@ context('/api/extensions/hard-break', () => {
cy.visit('/api/extensions/hard-break')
})
beforeEach(done => {
beforeEach(() => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.focus()
editor.setContent('<p>Example Text</p>')
done()
})
})