test: dedupe irc inbound mock read

This commit is contained in:
Peter Steinberger
2026-05-13 09:11:22 +01:00
parent 0f7b1c5414
commit 6648950862

View File

@@ -196,7 +196,7 @@ describe("irc inbound behavior", () => {
const assembledRequest = (
coreRuntime.channel.turn.runAssembled as unknown as { mock: { calls: unknown[][] } }
).mock.calls.at(0)?.[0] as { replyPipeline?: unknown } | undefined;
).mock.calls[0]?.[0] as { replyPipeline?: unknown } | undefined;
expect(assembledRequest?.replyPipeline).toEqual({});
});
});