diff --git a/src/infra/package-tag.test.ts b/src/infra/package-tag.test.ts index 9e49f9fcdcc..0401db6b156 100644 --- a/src/infra/package-tag.test.ts +++ b/src/infra/package-tag.test.ts @@ -23,5 +23,6 @@ describe("normalizePackageTagInput", () => { it("returns trimmed raw values when no package prefix matches", () => { expect(normalizePackageTagInput(" latest ", packageNames)).toBe("latest"); expect(normalizePackageTagInput("@other/plugin@beta", packageNames)).toBe("@other/plugin@beta"); + expect(normalizePackageTagInput("openclawer@beta", packageNames)).toBe("openclawer@beta"); }); });