iOS: add Apple Watch companion message MVP (#20054)

Merged via /review-pr -> /prepare-pr -> /merge-pr.

Prepared head SHA: 720791ae6b
Co-authored-by: mbelinky <132747814+mbelinky@users.noreply.github.com>
Co-authored-by: mbelinky <132747814+mbelinky@users.noreply.github.com>
Reviewed-by: @mbelinky
This commit is contained in:
Mariano
2026-02-18 13:37:41 +00:00
committed by GitHub
parent e71e9a55ab
commit 57083e4220
16 changed files with 831 additions and 1 deletions

View File

@@ -1,6 +1,11 @@
import { vi } from "vitest";
export const callGatewayMock = vi.fn();
type GatewayMockFn = ((opts: unknown) => unknown) & {
mockReset: () => void;
mockResolvedValue: (value: unknown) => void;
};
export const callGatewayMock = vi.fn() as GatewayMockFn;
vi.mock("../../gateway/call.js", () => ({
callGateway: (opts: unknown) => callGatewayMock(opts),