mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 17:51:22 +00:00
18 lines
533 B
TypeScript
18 lines
533 B
TypeScript
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,
|
|
maxWorkers: 1,
|
|
name: "auto-reply-reply",
|
|
sequence: {
|
|
groupOrder: 1,
|
|
},
|
|
});
|
|
}
|
|
|
|
export default createAutoReplyReplyVitestConfig();
|