add a demo to the bullet list extension page

This commit is contained in:
Hans Pagel
2020-09-15 16:50:54 +02:00
parent a917264057
commit f7f3d29fe5
3 changed files with 71 additions and 43 deletions

View File

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