diff --git a/packages/calcite-components/src/components/tip-manager/tip-manager.spec.ts b/packages/calcite-components/src/components/tip-manager/tip-manager.spec.ts deleted file mode 100644 index 64036f4cab8..00000000000 --- a/packages/calcite-components/src/components/tip-manager/tip-manager.spec.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { describe, it } from "vitest"; - -// TODO: Uncomment this test when there's a resolution to this bug. https://github.com/ionic-team/stencil/issues/1669 -// import { TipManager } from "./calcite-tip-manager"; - -describe.skip("TipManager", () => { - it("should increment/decrement the selectedIndex when the public next/prev methods are called", () => { - // const tipManager = new TipManager(); - // tipManager.total = 2; //needed to - // expect(tipManager.selectedIndex).toBe(0); - // tipManager.nextTip(); - // expect(tipManager.selectedIndex).toBe(1); - // tipManager.previousTip(); - // expect(tipManager.selectedIndex).toBe(0); - }); -});