mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 15:47:16 +00:00
Fix CLI web search/fetch command SecretRef resolution for provider-scoped plugin credentials. - Carry command provider overrides through gateway and local secret resolution. - Mark the selected web provider targets active and unrelated plugin refs inactive. - Cover Tavily, DuckDuckGo, legacy Firecrawl fetch, protocol overrides, and runtime command-secret behavior. - Add public plugin-sdk test mock exports needed by existing plugin tests after CI boundary enforcement. Fixes #82621. Replacement for #82699. Co-authored-by: 吴杨帆 <39647285+leno23@users.noreply.github.com>
13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
// Focused public test helpers for Node builtin module mocks.
|
|
|
|
export {
|
|
mockNodeBuiltinModule,
|
|
mockNodeChildProcessExecFile,
|
|
mockNodeChildProcessSpawnSync,
|
|
} from "./test-helpers/node-builtin-mocks.js";
|
|
export {
|
|
withMockedPlatform,
|
|
withMockedWindowsPlatform,
|
|
withRestoredMocks,
|
|
} from "../test-utils/vitest-spies.js";
|