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
+25
View File
@@ -0,0 +1,25 @@
import Editor from '../../../src/editor'
describe('菜单-打印', () => {
beforeEach(() => {
cy.visit('http://localhost:3000/canvas-editor/')
cy.get('canvas').should('have.length', 2)
})
it('打印', () => {
cy.getEditor().then(async (editor: Editor) => {
const imageList2 = await editor.command.getImage()
expect(imageList2.length).to.eq(2)
editor.command.executeSelectAll()
editor.command.executeBackspace()
cy.wait(200).then(async () => {
const imageList1 = await editor.command.getImage()
expect(imageList1.length).to.eq(1)
})
})
})
})