Files
openclaw/src/tasks/task-runtime.test-helpers.ts
Peter Steinberger 3d76a4af92 refactor(deadcode): privatize runtime test seams (#108338)
* 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
2026-07-15 07:27:10 -07:00

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";