From eaa835317bda24af892d415a7cae297e03ade1cb Mon Sep 17 00:00:00 2001 From: Tseka Luk Date: Sat, 14 Feb 2026 01:11:55 +0800 Subject: [PATCH] test(whatsapp): fix channel-activity mock path --- src/web/inbound/send-api.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/inbound/send-api.test.ts b/src/web/inbound/send-api.test.ts index 5e7f7c17e2d..ef925ffddf1 100644 --- a/src/web/inbound/send-api.test.ts +++ b/src/web/inbound/send-api.test.ts @@ -1,7 +1,7 @@ import { beforeEach, describe, expect, it, vi } from "vitest"; const recordChannelActivity = vi.fn(); -vi.mock("../../infra/channel-activity.js", () => ({ +vi.mock("../../../infra/channel-activity.js", () => ({ recordChannelActivity: (...args: unknown[]) => recordChannelActivity(...args), }));