From eaf86584519b53257726419746cb698147f65f51 Mon Sep 17 00:00:00 2001 From: JC Franco Date: Fri, 14 Feb 2025 16:14:14 -0800 Subject: [PATCH] chore(tip-manager): drop empty spec test --- .../components/tip-manager/tip-manager.spec.ts | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 packages/calcite-components/src/components/tip-manager/tip-manager.spec.ts 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); - }); -});