Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
examples/llm-as-judge-skills/vitest.config.ts
1import { defineConfig } from 'vitest/config';23export default defineConfig({4test: {5globals: true,6environment: 'node',7include: ['src/**/*.test.ts', 'tests/**/*.test.ts'],8setupFiles: ['./tests/setup.ts'],9coverage: {10provider: 'v8',11reporter: ['text', 'json', 'html'],12exclude: ['node_modules/', 'dist/', '**/*.test.ts', 'tests/setup.ts']13},14testTimeout: 60000, // 60s for LLM calls15hookTimeout: 30000,16// Retry failed tests once (helpful for flaky LLM calls)17retry: 118}19});2021