mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-18 22:11:37 +00:00
10 lines
423 B
TypeScript
10 lines
423 B
TypeScript
// Vitest full core unit support config wires the full core unit support 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-unit-support.config.ts",
|
|
)?.projects ?? [],
|
|
);
|