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.
103 lines
2.1 KiB
103 lines
2.1 KiB
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.command.executeSelectAll()
|
|
|
|
editor.command.executeBackspace()
|
|
|
|
editor.command.executeInsertElementList([
|
|
{
|
|
value: text
|
|
}
|
|
])
|
|
|
|
cy.get('.menu-item__left')
|
|
.click()
|
|
.then(() => {
|
|
const data = editor.command.getValue().data.main
|
|
|
|
expect(data[0].rowFlex).to.eq('left')
|
|
})
|
|
})
|
|
})
|
|
|
|
it('居中对齐', () => {
|
|
cy.getEditor().then((editor: Editor) => {
|
|
editor.command.executeSelectAll()
|
|
|
|
editor.command.executeBackspace()
|
|
|
|
editor.command.executeInsertElementList([
|
|
{
|
|
value: text
|
|
}
|
|
])
|
|
|
|
cy.get('.menu-item__center')
|
|
.click()
|
|
.then(() => {
|
|
const data = editor.command.getValue().data.main
|
|
|
|
expect(data[0].rowFlex).to.eq('center')
|
|
})
|
|
})
|
|
})
|
|
|
|
it('靠右对齐', () => {
|
|
cy.getEditor().then((editor: Editor) => {
|
|
editor.command.executeSelectAll()
|
|
|
|
editor.command.executeBackspace()
|
|
|
|
editor.command.executeInsertElementList([
|
|
{
|
|
value: text
|
|
}
|
|
])
|
|
|
|
cy.get('.menu-item__right')
|
|
.click()
|
|
.then(() => {
|
|
const data = editor.command.getValue().data.main
|
|
|
|
expect(data[0].rowFlex).to.eq('right')
|
|
})
|
|
})
|
|
})
|
|
|
|
it('行间距', () => {
|
|
cy.getEditor().then((editor: Editor) => {
|
|
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()
|
|
.then(() => {
|
|
const data = editor.command.getValue().data.main
|
|
|
|
expect(data[0].rowMargin).to.eq(1.25)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|