From 4358cc3a5cc73a9cfe16be8032ce494ba2531a59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E4=BA=91=E9=A3=9E?= Date: Wed, 16 Mar 2022 18:16:58 +0800 Subject: [PATCH] feat:add row test case --- cypress/integration/menus/row.spec.ts | 109 ++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 cypress/integration/menus/row.spec.ts diff --git a/cypress/integration/menus/row.spec.ts b/cypress/integration/menus/row.spec.ts new file mode 100644 index 0000000..cce1542 --- /dev/null +++ b/cypress/integration/menus/row.spec.ts @@ -0,0 +1,109 @@ +import Editor from '../../../src/editor' + +describe('菜单-行处理', () => { + + beforeEach(() => { + cy.visit('http://localhost:3000/canvas-editor/') + + cy.get('canvas').first().as('canvas').should('have.length', 1) + }) + + const text = 'canvas-editor' + + it('左对齐', () => { + cy.getEditor().then((editor: Editor) => { + editor.listener.saved = function (payload) { + const data = payload.data + + expect(data[0].rowFlex).to.eq('left') + } + + editor.command.executeSelectAll() + + editor.command.executeBackspace() + + editor.command.executeInsertElementList([{ + value: text + }]) + + cy.get('.menu-item__left') + .click() + .then(() => { + cy.get('@canvas').type('{ctrl}s') + }) + }) + }) + + it('居中对齐', () => { + cy.getEditor().then((editor: Editor) => { + editor.listener.saved = function (payload) { + const data = payload.data + + expect(data[0].rowFlex).to.eq('center') + } + + editor.command.executeSelectAll() + + editor.command.executeBackspace() + + editor.command.executeInsertElementList([{ + value: text + }]) + + cy.get('.menu-item__center') + .click() + .then(() => { + cy.get('@canvas').type('{ctrl}s') + }) + }) + }) + + it('靠右对齐', () => { + cy.getEditor().then((editor: Editor) => { + editor.listener.saved = function (payload) { + const data = payload.data + + expect(data[0].rowFlex).to.eq('right') + } + + editor.command.executeSelectAll() + + editor.command.executeBackspace() + + editor.command.executeInsertElementList([{ + value: text + }]) + + cy.get('.menu-item__right') + .click() + .then(() => { + cy.get('@canvas').type('{ctrl}s') + }) + }) + }) + + it('行间距', () => { + cy.getEditor().then((editor: Editor) => { + editor.listener.saved = function (payload) { + const data = payload.data + + expect(data[0].rowMargin).to.eq(1.25) + } + + editor.command.executeSelectAll() + + editor.command.executeBackspace() + + editor.command.executeInsertElementList([{ + value: text + }]) + + cy.get('.menu-item__row-margin').as('rowMargin').click() + + cy.get('@rowMargin').find('li').eq(1).click() + + cy.get('@canvas').type('{ctrl}s') + }) + }) + +})