Files
stack/plugins/discord/vitest.config.ts
Hermes Agent 365c2130de
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
feat(#756): add official Discord channel adapter
2026-07-14 15:16:44 -05:00

19 lines
344 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
thresholds: {
lines: 85,
functions: 85,
branches: 85,
statements: 85,
},
},
},
});