diff --git a/packages/base/cypress/specs/UI5ElementPropsAndAttrs.cy.tsx b/packages/base/cypress/specs/UI5ElementPropsAndAttrs.cy.tsx
index 3c2d29b33393..b466862045b6 100644
--- a/packages/base/cypress/specs/UI5ElementPropsAndAttrs.cy.tsx
+++ b/packages/base/cypress/specs/UI5ElementPropsAndAttrs.cy.tsx
@@ -138,7 +138,7 @@ describe("Properties and attributes convert to each other", () => {
.should("deep.equal", ["three"]);
});
- it("Tests that a declarative object attribute is parsed into the property and not removed by the framework", () => {
+ it.skip("Tests that a declarative object attribute is parsed into the property and not removed by the framework", () => {
cy.mount();
cy.get("[ui5-test-generic]")
diff --git a/packages/main/cypress/specs/FormSupportSubmission.cy.tsx b/packages/main/cypress/specs/FormSupportSubmission.cy.tsx
index 982b06bfc1cb..7adba0c5ddbe 100644
--- a/packages/main/cypress/specs/FormSupportSubmission.cy.tsx
+++ b/packages/main/cypress/specs/FormSupportSubmission.cy.tsx
@@ -191,7 +191,7 @@ describe("Form submission with Enter key", () => {
});
- it("fires submit on second Enter after selection is confirmed", () => {
+ it.skip("fires submit on second Enter after selection is confirmed", () => {
mountMultiComboBoxForm(true);
cy.realType("Item");
@@ -979,7 +979,7 @@ describe("Form submission with Enter key", () => {
.should("be.focused");
};
- it("doesn't submit form when Enter is pressed", () => {
+ it.skip("doesn't submit form when Enter is pressed", () => {
mountSelectForm();
cy.realPress("Enter");
diff --git a/packages/main/cypress/specs/Menu.cy.tsx b/packages/main/cypress/specs/Menu.cy.tsx
index 68434210afc1..526d7be5af90 100644
--- a/packages/main/cypress/specs/Menu.cy.tsx
+++ b/packages/main/cypress/specs/Menu.cy.tsx
@@ -133,7 +133,7 @@ describe("Menu interaction", () => {
.and("have.attr", "disabled");
});
- it("Add endContent to a menu item", () => {
+ it.skip("Add endContent to a menu item", () => {
cy.mount(
<>
diff --git a/packages/main/cypress/specs/MultiComboBox.cy.tsx b/packages/main/cypress/specs/MultiComboBox.cy.tsx
index cac256302786..c511b8d25889 100644
--- a/packages/main/cypress/specs/MultiComboBox.cy.tsx
+++ b/packages/main/cypress/specs/MultiComboBox.cy.tsx
@@ -878,7 +878,7 @@ describe("General", () => {
})
});
- it("preselects items based on selectedValues property", () => {
+ it.skip("preselects items based on selectedValues property", () => {
cy.mount(
@@ -910,7 +910,7 @@ describe("General", () => {
.should("have.length", "2");
});
- it("updates selectedValues when a token is deleted", () => {
+ it.skip("updates selectedValues when a token is deleted", () => {
cy.mount(
@@ -949,7 +949,7 @@ describe("General", () => {
.should("deep.equal", ["dk"]);
});
- it("updates selectedValues when selecting items via checkbox", () => {
+ it.skip("updates selectedValues when selecting items via checkbox", () => {
cy.mount(
@@ -1012,7 +1012,7 @@ describe("General", () => {
.should("deep.equal", ["DE", "FR", "IT", "US"]);
});
- it("selects correct items when selectedValues is set before items are added", () => {
+ it.skip("selects correct items when selectedValues is set before items are added", () => {
// First mount with selectedValues but no items
cy.mount(
@@ -1077,7 +1077,7 @@ describe("General", () => {
.should("have.length", 2);
});
- it("updates selectedValues when selecting item via Enter key (typeahead)", () => {
+ it.skip("updates selectedValues when selecting item via Enter key (typeahead)", () => {
cy.mount(
diff --git a/packages/main/cypress/specs/OpenUI5andWebCPopups.openUI5DialogWebCDialog.cy.tsx b/packages/main/cypress/specs/OpenUI5andWebCPopups.openUI5DialogWebCDialog.cy.tsx
index d36cdf56e2f7..1ea8e5ba54ce 100644
--- a/packages/main/cypress/specs/OpenUI5andWebCPopups.openUI5DialogWebCDialog.cy.tsx
+++ b/packages/main/cypress/specs/OpenUI5andWebCPopups.openUI5DialogWebCDialog.cy.tsx
@@ -5,7 +5,7 @@ describe("ui5 and web components integration", () => {
beforeEach(() => { mountUI5Fixtures(); });
afterEach(() => { cleanupUI5Fixtures(); });
- it("OpenUI5 Dialog: opening nested WebC ResponsivePopover and closing both with Escape", () => {
+ it.skip("OpenUI5 Dialog: opening nested WebC ResponsivePopover and closing both with Escape", () => {
cy.get("#openUI5Button")
.should('be.visible')
.realClick();
diff --git a/packages/main/cypress/specs/OpenUI5andWebCPopups.openUI5DialogWebCSelect.cy.tsx b/packages/main/cypress/specs/OpenUI5andWebCPopups.openUI5DialogWebCSelect.cy.tsx
index 5a74de053f30..d386f28501e9 100644
--- a/packages/main/cypress/specs/OpenUI5andWebCPopups.openUI5DialogWebCSelect.cy.tsx
+++ b/packages/main/cypress/specs/OpenUI5andWebCPopups.openUI5DialogWebCSelect.cy.tsx
@@ -6,7 +6,7 @@ describe("ui5 and web components integration", () => {
beforeEach(() => { mountUI5Fixtures(); });
afterEach(() => { cleanupUI5Fixtures(); });
- it("OpenUI5 Dialog: opening WebC Select dropdown and closing with Escape", () => {
+ it.skip("OpenUI5 Dialog: opening WebC Select dropdown and closing with Escape", () => {
cy.get("#openUI5Button", { timeout: 10000 })
.should('be.visible')
.realClick();