mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 10:40:43 +00:00
fix(lint): clear masked main check failures
This commit is contained in:
@@ -475,8 +475,8 @@ describe("Discord model picker interactions", () => {
|
||||
|
||||
await button.run(submitInteraction as unknown as PickerButtonInteraction, submitData);
|
||||
|
||||
const mismatchLog = verboseSpy.mock.calls.find((call) =>
|
||||
String(call[0] ?? "").includes("model picker override mismatch"),
|
||||
const mismatchLog = verboseSpy.mock.calls.find(
|
||||
(call) => typeof call[0] === "string" && call[0].includes("model picker override mismatch"),
|
||||
)?.[0];
|
||||
expect(mismatchLog).toContain("session key agent:worker:subagent:bound");
|
||||
});
|
||||
|
||||
@@ -51,7 +51,7 @@ describe("memory-wiki cli metadata entry", () => {
|
||||
const resolvedConfig = { vaultMode: "bridge", vault: { path: "/vault" } };
|
||||
mocks.resolveMemoryWikiConfig.mockReturnValue(resolvedConfig);
|
||||
|
||||
plugin.register(api);
|
||||
await plugin.register(api);
|
||||
|
||||
const register = registerCli.mock.calls[0]?.[0];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user