diff --git a/tests/e2e/specs/FormSelectList.spec.js b/tests/e2e/specs/FormSelectList.spec.js index e54e44ca2..549090dde 100644 --- a/tests/e2e/specs/FormSelectList.spec.js +++ b/tests/e2e/specs/FormSelectList.spec.js @@ -348,14 +348,14 @@ describe("Form Select List", () => { cy.get("[data-cy=inspector-edit-json]").click(); cy.assertComponentValueAsJson('[data-cy="inspector-monaco-json"]', [ - { content: "one", value: "one" } + { content: "one", value: "one", ariaLabel: "" } ]); cy.setVueComponentValue( '[data-cy="inspector-monaco-json"]', JSON.stringify([ - { content: "one", value: "one" }, - { content: "two", value: "two" } + { content: "one", value: "one", ariaLabel: "" }, + { content: "two", value: "two", ariaLabel: "" } ]) ); cy.get("[data-cy=inspector-monaco-json-expand]").click(); @@ -363,8 +363,8 @@ describe("Form Select List", () => { '[data-cy="inspector-monaco-json-expanded"]', JSON.stringify( [ - { content: "one", value: "one" }, - { content: "two", value: "two" } + { content: "one", value: "one", ariaLabel: "" }, + { content: "two", value: "two", ariaLabel: "" } ], null, 2