Files
page-agent/packages/llms/vitest.config.js
T

11 lines
250 B
JavaScript
Raw Normal View History

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
name: 'llms',
include: ['src/**/*.test.ts'],
// Suppress console output from passing tests; failed tests still get their logs.
silent: 'passed-only',
},
})