mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-29 08:19:34 +08:00
add test to the italic extension demo
This commit is contained in:
parent
6190c3ee10
commit
bdbf6e7f61
26
docs/src/demos/Extensions/Italic/index.spec.js
Normal file
26
docs/src/demos/Extensions/Italic/index.spec.js
Normal file
@ -0,0 +1,26 @@
|
||||
context('/api/extensions/italic', () => {
|
||||
beforeEach(() => {
|
||||
cy.visit('/api/extensions/italic')
|
||||
|
||||
cy.get('.ProseMirror').window().then(window => {
|
||||
const { editor } = window
|
||||
editor.setContent('<p>Example Text</p>')
|
||||
editor.focus().selectAll()
|
||||
})
|
||||
})
|
||||
|
||||
describe('italic', () => {
|
||||
it('should make the selected text italic', () => {
|
||||
cy.get('.demo__preview button:first').click({ force: true })
|
||||
cy.get('.ProseMirror').contains('em', 'Example Text')
|
||||
|
||||
cy.get('.demo__preview button:first').click({ force: true })
|
||||
cy.get('.ProseMirror em').should('not.exist')
|
||||
})
|
||||
|
||||
it('should toggle the selected text italic', () => {
|
||||
cy.get('.demo__preview button:first').dblclick({ force: true })
|
||||
cy.get('.ProseMirror em').should('not.exist')
|
||||
})
|
||||
})
|
||||
})
|
@ -42,6 +42,8 @@ export default {
|
||||
<p style="font-style: italic">This as well.</p>
|
||||
`,
|
||||
})
|
||||
|
||||
window.editor = this.editor
|
||||
},
|
||||
|
||||
beforeDestroy() {
|
||||
|
Loading…
Reference in New Issue
Block a user