Skip to content

Commit

Permalink
test: skip unstable tests (#7524)
Browse files Browse the repository at this point in the history
**Related Issue:** N/A

## Summary

🧪🚫😭
  • Loading branch information
jcfranco authored Aug 15, 2023
1 parent 12ffd1a commit d228c42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe("calcite-dropdown", () => {
]);
});

describe("disabled", () => {
describe.skip("disabled", () => {
disabled(simpleDropdownHTML, {
focusTarget: {
tab: "calcite-button",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ describe("calcite-input-time-picker", () => {
expect(await inputTimePicker.getProperty("value")).toBe("14:05:00");
});

it("correctly relocalizes the display value when the lang and numbering systems change", async () => {
it.skip("correctly relocalizes the display value when the lang and numbering systems change", async () => {
const page = await newE2EPage();
await page.setContent(`<calcite-input-time-picker step="1" value="14:30:25"></calcite-input-time-picker>`);
const inputTimePicker = await page.find("calcite-input-time-picker");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ describe("calcite-tooltip", () => {
});
});

it("should open hovered tooltip while pointer is moving", async () => {
it.skip("should open hovered tooltip while pointer is moving", async () => {
const page = await newE2EPage();
await page.setContent(
html`
Expand Down

0 comments on commit d228c42

Please sign in to comment.