From 3cc49e2a9e3056e1733a9766d8c28a45f764a0e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Busso?= <90727999+agustinbusso@users.noreply.github.com> Date: Tue, 5 Nov 2024 11:12:04 -0300 Subject: [PATCH] Add ariaLabel to test --- tests/e2e/specs/FormSelectList.spec.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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