test(contracts): remove dead session binding helper

This commit is contained in:
Vincent Koc
2026-04-04 02:16:00 +09:00
parent 514b37e185
commit f881eb066c

View File

@@ -1,12 +0,0 @@
import { describe, expect, it } from "vitest";
import { sessionBindingContractChannelIds } from "../../../src/channels/plugins/contracts/manifest.js";
export function describeSessionBindingContractCoverage(channelIds: readonly string[]) {
describe("session binding contract coverage", () => {
for (const channelId of channelIds) {
it(`includes ${channelId} in the shared session binding contract registry`, () => {
expect(sessionBindingContractChannelIds).toContain(channelId);
});
}
});
}