Skip to content

Commit af1eb0b

Browse files
authored
chore(ui5-multi-combobox): temporary skip unstable RTL/LTR navigation tests
I will skip the unstable RTL/LTR navigation tests in MultiComboBox for now. These tests are currently flaky and need further investigation to ensure reliability.
1 parent eacbe26 commit af1eb0b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/main/cypress/specs/MultiComboBox.cy.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ describe("Event firing", () => {
365365
});
366366

367367
describe("MultiComboBox RTL/LTR Arrow Navigation", () => {
368-
it("should focus last token on arrow right in RTL mode when input is at start", () => {
368+
it.skip("should focus last token on arrow right in RTL mode when input is at start", () => {
369369
cy.mount(
370370
<div dir="rtl">
371371
<MultiComboBox noValidation={true}>
@@ -399,7 +399,7 @@ describe("MultiComboBox RTL/LTR Arrow Navigation", () => {
399399
cy.focused().should("have.class", "ui5-token--wrapper");
400400
});
401401

402-
it("should focus last token on arrow left in LTR mode when input is at start", () => {
402+
it.skip("should focus last token on arrow left in LTR mode when input is at start", () => {
403403
cy.mount(
404404
<div dir="ltr">
405405
<MultiComboBox noValidation={true}>
@@ -501,7 +501,7 @@ describe("MultiComboBox RTL/LTR Arrow Navigation", () => {
501501
cy.focused().should("not.have.class", "ui5-token--wrapper");
502502
});
503503

504-
it("should navigate from last token back to input with arrow right in LTR mode", () => {
504+
it.skip("should navigate from last token back to input with arrow right in LTR mode", () => {
505505
cy.mount(
506506
<div dir="ltr">
507507
<MultiComboBox noValidation={true}>
@@ -531,7 +531,7 @@ describe("MultiComboBox RTL/LTR Arrow Navigation", () => {
531531
cy.focused().should("not.have.class", "ui5-token--wrapper");
532532
});
533533

534-
it("should handle empty input case in RTL mode", () => {
534+
it.skip("should handle empty input case in RTL mode", () => {
535535
cy.mount(
536536
<div dir="rtl">
537537
<MultiComboBox noValidation={true}>

0 commit comments

Comments
 (0)