chore: update workspace dependencies

This commit is contained in:
Peter Steinberger
2026-04-28 03:09:39 +01:00
parent bbed4ac096
commit 632b0fd580
31 changed files with 266 additions and 249 deletions

View File

@@ -3162,7 +3162,7 @@ describe("dispatchTelegramMessage draft streaming", () => {
editMessageTelegram.mockResolvedValue({ ok: true });
dispatchReplyWithBufferedBlockDispatcher.mockImplementation(
async ({ dispatcherOptions, replyOptions }) => {
replyOptions?.onPartialReply?.({ text: "Processing..." });
await replyOptions?.onPartialReply?.({ text: "Processing..." });
await dispatcherOptions.deliver(
{ text: "⚠️ exec failed", isError: true },
{ kind: "block" },

View File

@@ -334,7 +334,7 @@ describe("createTelegramBot", () => {
replySpy.mockImplementation(async (ctx: MsgContext, opts?: GetReplyOptions) => {
await opts?.onReplyStart?.();
const body = String(ctx.Body ?? "");
const body = ctx.Body ?? "";
startedBodies.push(body);
if (body.includes("first message")) {
await firstTurnGate;
@@ -444,7 +444,7 @@ describe("createTelegramBot", () => {
replySpy.mockImplementation(async (ctx: MsgContext, opts?: GetReplyOptions) => {
await opts?.onReplyStart?.();
const body = String(ctx.Body ?? "");
const body = ctx.Body ?? "";
startedBodies.push(body);
if (body.includes("first")) {
await firstRunGate;