mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 15:59:30 +00:00
8 lines
313 B
TypeScript
8 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,
|
|
});
|