fix(FN-4603): relax exempt-set includes typing in parity test

Fusion-Task-Id: FN-4603
Fusion-Task-Lineage: c74085e2-d91c-468f-883b-5c33818e53fd
This commit is contained in:
Fusion
2026-05-15 07:45:31 -07:00
committed by gsxdsm
parent 7b186c7d3d
commit acd05ce7ab

View File

@@ -109,7 +109,7 @@ describe("gating-classifications parity", () => {
it("classifies fn_web_fetch as network_api in both action and permanent sets", () => {
expect(ACTION_GATE_NETWORK_API_TOOLS.has("fn_web_fetch")).toBe(true);
expect(NETWORK_API_TOOLS.has("fn_web_fetch")).toBe(true);
expect(COORDINATION_EXEMPT_TOOLS.includes("fn_web_fetch")).toBe(false);
expect((COORDINATION_EXEMPT_TOOLS as readonly string[]).includes("fn_web_fetch")).toBe(false);
});
it("keeps fn_* category equivalence mappings across gates", () => {