mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 10:19:33 +00:00
9 lines
323 B
TypeScript
9 lines
323 B
TypeScript
// Vitest unit src config wires the unit src test shard.
|
|
import { createUnitVitestConfigWithOptions } from "./vitest.unit.config.ts";
|
|
|
|
export default createUnitVitestConfigWithOptions(process.env, {
|
|
name: "unit-src",
|
|
includePatterns: ["src/**/*.test.ts"],
|
|
extraExcludePatterns: ["src/acp/**", "src/security/**"],
|
|
});
|