mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 08:27:39 +00:00
fix: align retry backoff semantics and test mock signatures
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import { Command } from "commander";
|
||||
import { beforeEach, describe, expect, it, vi } from "vitest";
|
||||
|
||||
const runAcpClientInteractive = vi.fn(async (_opts?: unknown) => {});
|
||||
const serveAcpGateway = vi.fn(async (_opts?: unknown) => {});
|
||||
const runAcpClientInteractive = vi.fn(async (_opts: unknown) => {});
|
||||
const serveAcpGateway = vi.fn(async (_opts: unknown) => {});
|
||||
|
||||
const defaultRuntime = {
|
||||
error: vi.fn(),
|
||||
|
||||
Reference in New Issue
Block a user