feat: add Vitest test infrastructure for agent and script validation (#337)

Adds Vitest + TypeScript test infrastructure for agent validation. Validates 642 agent files across 14 categories for YAML frontmatter, kebab-case naming, and directory population.
This commit is contained in:
toukanno
2026-04-11 11:54:34 +09:00
committed by GitHub
parent b456845e85
commit 6f342178f3
5 changed files with 278 additions and 0 deletions

8
vitest.config.ts Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["tests/**/*.test.ts"],
testTimeout: 30_000,
},
});