Skip to content

Commit

Permalink
test(action-menu, input-number): skip unstable tests (#9783)
Browse files Browse the repository at this point in the history
**Related Issue:** N/A

## Summary

🚫🧪
  • Loading branch information
jcfranco authored Jul 15, 2024
1 parent 60ab0dc commit 07d2c82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ describe("calcite-action-menu", () => {
expect(await popover.getProperty("open")).toBe(false);
});

it("should close menu if slotted action is clicked", async () => {
it.skip("should close menu if slotted action is clicked", async () => {
const page = await newE2EPage({
html: `<calcite-action-menu open>
<calcite-action id="triggerAction" slot="${SLOTS.trigger}" text="Add" icon="plus" text-enabled></calcite-action>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1768,7 +1768,7 @@ describe("calcite-input-number", () => {
t9n("calcite-input-number");
});

it("should stop increasing the value when pointer is moved away from the increment button", async () => {
it.skip("should stop increasing the value when pointer is moved away from the increment button", async () => {
const page = await newE2EPage();
await page.setContent("<calcite-input-number></calcite-input-number>");
const inputNumber = await page.find("calcite-input-number");
Expand Down

0 comments on commit 07d2c82

Please sign in to comment.