From 2bc8118aba08bc4fde8ac2091ec043f985c998ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E4=BA=91=E9=A3=9E?= Date: Wed, 23 Mar 2022 16:12:35 +0800 Subject: [PATCH] feat:add print test case --- cypress/integration/menus/print.spec.ts | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 cypress/integration/menus/print.spec.ts diff --git a/cypress/integration/menus/print.spec.ts b/cypress/integration/menus/print.spec.ts new file mode 100644 index 0000000..4d8923d --- /dev/null +++ b/cypress/integration/menus/print.spec.ts @@ -0,0 +1,29 @@ +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((editor: Editor) => { + const imageList2 = editor.command.getImage() + expect(imageList2.length).to.eq(2) + + editor.command.executeSelectAll() + + editor.command.executeBackspace() + + cy.wait(200).then(() => { + const imageList1 = editor.command.getImage() + expect(imageList1.length).to.eq(1) + }) + }) + + }) + +})