mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-04 14:11:35 +00:00
* refactor(sessions): privatize runtime test seams * refactor(commitments): privatize extraction test seams * refactor(flows): privatize doctor health seams * refactor(tasks): privatize registry test seams * build(commitments): bundle Docker test support * chore(deadcode): shrink runtime export baseline
20 lines
809 B
TypeScript
20 lines
809 B
TypeScript
// Test-only access to task registry reset and runtime-injection hooks.
|
|
export {
|
|
resetDetachedTaskLifecycleRuntimeForTests,
|
|
setDetachedTaskLifecycleRuntime,
|
|
} from "./detached-task-runtime.test-support.js";
|
|
export { resetGeneratedMediaTaskActivityForTests } from "./generated-media-task-activity.test-support.js";
|
|
export { configureTaskFlowRegistryRuntime } from "./task-flow-registry.store.test-support.js";
|
|
export {
|
|
createFlowRecord,
|
|
resetTaskFlowRegistryForTests,
|
|
} from "./task-flow-registry.test-support.js";
|
|
export {
|
|
maybeDeliverTaskStateChangeUpdate,
|
|
resetTaskRegistryControlRuntimeForTests,
|
|
resetTaskRegistryDeliveryRuntimeForTests,
|
|
resetTaskRegistryForTests,
|
|
setTaskRegistryControlRuntimeForTests,
|
|
setTaskRegistryDeliveryRuntimeForTests,
|
|
} from "./task-registry.test-support.js";
|