mirror of
https://github.com/kevinthedang/discord-ollama.git
synced 2026-08-08 23:54:01 -04:00
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
// config for vitest
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true, // <-- reduces test file imports
|
|
reporters: ['verbose'] // <-- verbose output
|
|
}
|
|
}) |