test:update get editor value

This commit is contained in:
Hufe921
2023-03-18 12:25:20 +08:00
parent 6082ab26d1
commit 436d1de284
19 changed files with 37 additions and 95 deletions
+1 -3
View File
@@ -34,9 +34,7 @@ describe('控件-复选框', () => {
}
}])
const payload = editor.command.getValue()
const data = payload.data[0]
const data = editor.command.getValue().data.main[0]
expect(data.control!.code).to.be.eq('98175')
})
+1 -3
View File
@@ -41,9 +41,7 @@ describe('控件-列举型', () => {
.eq(0)
.click()
.then(() => {
const payload = editor.command.getValue()
const data = payload.data[0]
const data = editor.command.getValue().data.main[0]
expect(data.control!.value![0].value).to.be.eq(text)
+1 -3
View File
@@ -33,9 +33,7 @@ describe('控件-文本型', () => {
cy.get('.ce-inputarea')
.type(text)
.then(() => {
const payload = editor.command.getValue()
const data = payload.data[0]
const data = editor.command.getValue().data.main[0]
expect(data.control!.value![0].value).to.be.eq(text)
})