mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-19 17:11:42 -06:00
e085b379f8
* refactor(agents): thread plugin metadata snapshots per turn * fix(agents): validate threaded plugin metadata * fix(agents): preserve prepared metadata fallbacks * fix(commands): preserve snapshot auth refs typing * fix(commands): use indexed synthetic auth refs * test(auto-reply): isolate completed goal session store * test(agents): serialize embedded runner harness files * test(auto-reply): serialize reply runtime files * test(auto-reply): isolate goal context admission * test(auto-reply): allow persisted goal admission under CI load * test(agents): allow embedded harness warmup under CI load
15 lines
543 B
TypeScript
15 lines
543 B
TypeScript
// Vitest auto reply reply config wires the auto reply reply test shard.
|
|
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
import { autoReplyReplySubtreeTestInclude } from "./vitest.test-shards.mjs";
|
|
|
|
export function createAutoReplyReplyVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig([...autoReplyReplySubtreeTestInclude], {
|
|
dir: "src/auto-reply",
|
|
env,
|
|
fileParallelism: false,
|
|
name: "auto-reply-reply",
|
|
});
|
|
}
|
|
|
|
export default createAutoReplyReplyVitestConfig();
|