From 62f6540f4a3ae8818c9d36557a5c96122ea4c7a7 Mon Sep 17 00:00:00 2001 From: Hufe921 Date: Thu, 18 Aug 2022 21:22:18 +0800 Subject: [PATCH] test:add date test case --- cypress/integration/menus/date.spec.ts | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 cypress/integration/menus/date.spec.ts diff --git a/cypress/integration/menus/date.spec.ts b/cypress/integration/menus/date.spec.ts new file mode 100644 index 0000000..07028c8 --- /dev/null +++ b/cypress/integration/menus/date.spec.ts @@ -0,0 +1,31 @@ +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('LaTeX', () => { + cy.getEditor().then((editor: Editor) => { + editor.listener.saved = function (payload) { + const data = payload.data + + expect(data[0].type).to.eq('date') + } + + editor.command.executeSelectAll() + + editor.command.executeBackspace() + + cy.get('.menu-item__date').click() + + cy.get('.menu-item__date li').first().click() + + cy.get('@canvas').type('{ctrl}s') + }) + }) + +})