From 8dab4a48c451ec2f4f74508429184a9fedc528c4 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 14 Mar 2026 00:58:12 +0000 Subject: [PATCH] test: tighten package tag prefix matching --- src/infra/package-tag.test.ts | 1 + 1 file changed, 1 insertion(+) 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"); }); });