chore: upgrade cypress version

This commit is contained in:
Hufe921
2023-11-29 20:07:59 +08:00
parent 6b30e3ca9d
commit ecd4ae9652
32 changed files with 382 additions and 241 deletions
+32
View File
@@ -0,0 +1,32 @@
import Editor from '../../../src/editor'
describe('菜单-分割线', () => {
beforeEach(() => {
cy.visit('http://localhost:3000/canvas-editor/')
cy.get('canvas').first().as('canvas').should('have.length', 1)
})
it('分割线', () => {
cy.getEditor().then((editor: Editor) => {
editor.command.executeSelectAll()
editor.command.executeBackspace()
cy.get('.menu-item__separator').click()
cy.get('.menu-item__separator li')
.eq(1)
.click()
.then(() => {
const data = editor.command.getValue().data.main
expect(data[0].type).to.eq('separator')
expect(data[0]?.dashArray?.[0]).to.eq(1)
expect(data[0]?.dashArray?.[1]).to.eq(1)
})
})
})
})