From 052d988add4da2cac125589d2874b8413eb8561c Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 15 Feb 2026 13:03:16 +0000 Subject: [PATCH] test(auto-reply): move inbound provider contract test into unit suite --- .../reply/inbound-context.providers-contract.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename test/inbound-contract.providers.test.ts => src/auto-reply/reply/inbound-context.providers-contract.test.ts (94%) diff --git a/test/inbound-contract.providers.test.ts b/src/auto-reply/reply/inbound-context.providers-contract.test.ts similarity index 94% rename from test/inbound-contract.providers.test.ts rename to src/auto-reply/reply/inbound-context.providers-contract.test.ts index 1e0100e162..a75b2996c3 100644 --- a/test/inbound-contract.providers.test.ts +++ b/src/auto-reply/reply/inbound-context.providers-contract.test.ts @@ -1,7 +1,7 @@ import { describe, it } from "vitest"; -import type { MsgContext } from "../src/auto-reply/templating.js"; -import { finalizeInboundContext } from "../src/auto-reply/reply/inbound-context.js"; -import { expectInboundContextContract } from "./helpers/inbound-contract.js"; +import type { MsgContext } from "../templating.js"; +import { expectInboundContextContract } from "../../../test/helpers/inbound-contract.js"; +import { finalizeInboundContext } from "./inbound-context.js"; describe("inbound context contract (providers + extensions)", () => { const cases: Array<{ name: string; ctx: MsgContext }> = [