Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/base/cypress/specs/UI5ElementPropsAndAttrs.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(<Generic object-prop='{"a":1,"b":"two"}'></Generic>);

cy.get("[ui5-test-generic]")
Expand Down
4 changes: 2 additions & 2 deletions packages/main/cypress/specs/FormSupportSubmission.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion packages/main/cypress/specs/Menu.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(
<>
<Button id="btnOpen">Open Menu</Button>
Expand Down
10 changes: 5 additions & 5 deletions packages/main/cypress/specs/MultiComboBox.cy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ describe("General", () => {
})
});

it("preselects items based on selectedValues property", () => {
it.skip("preselects items based on selectedValues property", () => {
cy.mount(
<MultiComboBox style="width: 300px" selectedValues={["al", "en"]}>
<MultiComboBoxItem text="Albania" value="al"></MultiComboBoxItem>
Expand Down Expand Up @@ -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(
<MultiComboBox style="width: 300px" selectedValues={["dk", "en"]}>
<MultiComboBoxItem text="Albania" value="al"></MultiComboBoxItem>
Expand Down Expand Up @@ -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(
<MultiComboBox style="width: 300px">
<MultiComboBoxItem text="Germany" value="DE"></MultiComboBoxItem>
Expand Down Expand Up @@ -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(
<MultiComboBox id="mcb-late-items" style="width: 300px" selectedValues={["FR", "US"]} />
Expand Down Expand Up @@ -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(
<MultiComboBox style="width: 300px">
<MultiComboBoxItem text="Germany" value="DE"></MultiComboBoxItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Loading