add some content to the link extension page

This commit is contained in:
Hans Pagel
2020-09-23 12:39:09 +02:00
parent 318172741b
commit c85064d229
3 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
context('/api/extensions/link', () => {
before(() => {
cy.visit('/api/extensions/link')
})
beforeEach(() => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.setContent('<p>Example Text</p>')
editor.selectAll()
})
})
})