web: add heartbeat and bounded reconnect tuning

This commit is contained in:
Peter Steinberger
2025-11-26 02:34:43 +01:00
parent e482e7768b
commit baf20af17f
19 changed files with 541 additions and 63 deletions

View File

@@ -57,7 +57,11 @@ describe("transcribeInboundAudio", () => {
});
it("returns undefined when no transcription command", async () => {
const res = await transcribeInboundAudio({ inbound: {} } as never, {} as never, runtime as never);
const res = await transcribeInboundAudio(
{ inbound: {} } as never,
{} as never,
runtime as never,
);
expect(res).toBeUndefined();
});
});