mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
10 lines
435 B
TypeScript
10 lines
435 B
TypeScript
// Vitest full core support boundary config wires the full core support boundary 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-support-boundary.config.ts",
|
|
)?.projects ?? [],
|
|
);
|