diff --git a/docs/src/demos/Extensions/BulletList/index.spec.js b/docs/src/demos/Extensions/BulletList/index.spec.js new file mode 100644 index 00000000..c4bed2ca --- /dev/null +++ b/docs/src/demos/Extensions/BulletList/index.spec.js @@ -0,0 +1,12 @@ +context('/api/extensions/bullet-list', () => { + before(() => { + cy.visit('/api/extensions/bullet-list') + }) + + beforeEach(() => { + cy.get('.ProseMirror').then(([{ editor }]) => { + editor.setContent('
Example Text
') + editor.selectAll() + }) + }) +}) \ No newline at end of file diff --git a/docs/src/demos/Extensions/BulletList/index.vue b/docs/src/demos/Extensions/BulletList/index.vue new file mode 100644 index 00000000..0619a5db --- /dev/null +++ b/docs/src/demos/Extensions/BulletList/index.vue @@ -0,0 +1,55 @@ + +