Files
openclaw/test/vitest/vitest.full-core-tooling.config.ts
2026-06-11 10:52:59 +09:00

10 lines
408 B
TypeScript

// Vitest full core tooling config wires the full core tooling test shard.
import { createProjectShardVitestConfig } from "./vitest.project-shard-config.ts";
import { fullSuiteVitestShards } from "./vitest.test-shards.mjs";
export default createProjectShardVitestConfig(
fullSuiteVitestShards.find(
(shard) => shard.config === "test/vitest/vitest.full-core-tooling.config.ts",
)?.projects ?? [],
);