mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
648 B
28 lines
648 B
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.command.executeSelectAll()
|
|
|
|
editor.command.executeBackspace()
|
|
|
|
cy.get('.menu-item__date').click()
|
|
|
|
cy.get('.menu-item__date li')
|
|
.first()
|
|
.click()
|
|
.then(() => {
|
|
const data = editor.command.getValue().data.main
|
|
|
|
expect(data[0].type).to.eq('date')
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|