mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 09:41:11 +00:00
13 lines
454 B
TypeScript
13 lines
454 B
TypeScript
import { createScopedVitestConfig } from "./vitest.scoped-config.ts";
|
|
import { autoReplyTopLevelReplyTestInclude } from "./vitest.test-shards.mjs";
|
|
|
|
export function createAutoReplyTopLevelVitestConfig(env?: Record<string, string | undefined>) {
|
|
return createScopedVitestConfig([...autoReplyTopLevelReplyTestInclude], {
|
|
dir: "src/auto-reply",
|
|
env,
|
|
name: "auto-reply-top-level",
|
|
});
|
|
}
|
|
|
|
export default createAutoReplyTopLevelVitestConfig();
|