mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-30 06:13:34 +00:00
9 lines
313 B
TypeScript
9 lines
313 B
TypeScript
// Vitest unit security config wires the unit security test shard.
|
|
import { createUnitVitestConfigWithOptions } from "./vitest.unit.config.ts";
|
|
|
|
export default createUnitVitestConfigWithOptions(process.env, {
|
|
name: "unit-security",
|
|
includePatterns: ["src/security/**/*.test.ts"],
|
|
passWithNoTests: true,
|
|
});
|