diff --git a/src/browser/profiles.test.ts b/src/browser/profiles.test.ts index bc1ff087600..b5b4d0fdbaa 100644 --- a/src/browser/profiles.test.ts +++ b/src/browser/profiles.test.ts @@ -102,10 +102,6 @@ describe("getUsedPorts", () => { expect(getUsedPorts(undefined)).toEqual(new Set()); }); - it("returns empty set for empty profiles object", () => { - expect(getUsedPorts({})).toEqual(new Set()); - }); - it("extracts ports from profile configs", () => { const profiles = { openclaw: { cdpPort: 18792 }, @@ -227,10 +223,6 @@ describe("getUsedColors", () => { expect(getUsedColors(undefined)).toEqual(new Set()); }); - it("returns empty set for empty profiles object", () => { - expect(getUsedColors({})).toEqual(new Set()); - }); - it("extracts and uppercases colors from profile configs", () => { const profiles = { openclaw: { color: "#ff4500" },