refactor: trim inbound contract test helper

This commit is contained in:
Peter Steinberger
2026-05-02 05:48:43 +01:00
parent 90ba174511
commit 9714eb3e65

View File

@@ -1,13 +1,4 @@
import { vi } from "vitest";
import type { MsgContext } from "../../../auto-reply/templating.js";
export type InboundContextCapture = {
ctx: MsgContext | undefined;
};
export function createInboundContextCapture(): InboundContextCapture {
return { ctx: undefined };
}
export function buildDispatchInboundCaptureMock<T extends Record<string, unknown>>(
actual: T,