-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathindex.spec.js
56 lines (48 loc) · 1.02 KB
/
index.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
context('/src/Examples/Menus/React/', () => {
before(() => {
cy.visit('/src/Examples/Menus/React/')
})
beforeEach(() => {
cy.get('.tiptap').then(([{ editor }]) => {
editor.chain().focus().clearContent().run()
})
})
it('should show menu when the editor is empty', () => {
cy.get('body')
.find('.floating-menu')
})
it('should show menu when text is selected', () => {
cy.get('.tiptap')
.type('Test')
.type('{selectall}')
cy.get('body')
.find('.bubble-menu')
})
const marks = [
{
button: 'Bold',
tag: 'strong',
},
{
button: 'Italic',
tag: 'em',
},
{
button: 'Strike',
tag: 's',
},
]
marks.forEach(mark => {
it(`should apply ${mark.button} correctly`, () => {
cy.get('.tiptap')
.type('Test')
.type('{selectall}')
cy.get('body')
.find('.bubble-menu')
.contains(mark.button)
.click()
cy.get('.tiptap')
.find(`p ${mark.tag}`)
})
})
})