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.
34 lines
779 B
34 lines
779 B
import Editor from '../../../src/editor'
|
|
|
|
describe('菜单-LaTeX', () => {
|
|
beforeEach(() => {
|
|
cy.visit('http://localhost:3000/canvas-editor/')
|
|
|
|
cy.get('canvas').first().as('canvas').should('have.length', 1)
|
|
})
|
|
|
|
const text = 'canvas-editor'
|
|
|
|
it('LaTeX', () => {
|
|
cy.getEditor().then((editor: Editor) => {
|
|
editor.command.executeSelectAll()
|
|
|
|
editor.command.executeBackspace()
|
|
|
|
cy.get('.menu-item__latex').click()
|
|
|
|
cy.get('.dialog-option__item [name="value"]').type(text)
|
|
|
|
cy.get('.dialog-menu button')
|
|
.eq(1)
|
|
.click()
|
|
.then(() => {
|
|
const data = editor.command.getValue().data.main
|
|
|
|
expect(data[0].type).to.eq('latex')
|
|
|
|
expect(data[0].value).to.eq(text)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|