import { backgroundColorMap, DEFAULT_TABS } from "./types"; describe("carousel types exports", () => { it("exports backgroundColorMap with expected keys", () => { expect(backgroundColorMap).toBeDefined(); expect(backgroundColorMap.blue).toBe("bg-bg-fill-inverse"); expect(backgroundColorMap.green).toBe("bg-border-success"); expect(backgroundColorMap.orange).toBe("bg-orange-500"); expect(backgroundColorMap.purple).toBe("bg-purple-500"); expect(backgroundColorMap.white).toBe("bg-white"); }); it("exports backgroundColorMap with only the supported color keys", () => { expect(Object.keys(backgroundColorMap)).toEqual([ "blue", "green", "orange", "purple", "white", ]); }); it("exports DEFAULT_TABS", () => { expect(DEFAULT_TABS).toEqual(["Business Ready", "Internet Only"]); }); });