mirror of
https://github.com/kevinthedang/discord-ollama.git
synced 2026-08-08 23:54:01 -04:00
* switch coverage to codecov * reset node, increment ver * remove auto-pass job var * remove coverage 'env' note * set badge with new action * add fqvn for action * fix step name * make badge commit explicit
13 lines
332 B
TypeScript
13 lines
332 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
// config for vitest
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true, // <-- reduces test file imports
|
|
reporters: ['verbose'], // <-- verbose output
|
|
coverage: {
|
|
include: ['src/**/*.ts'],
|
|
reporter: 'json-summary'
|
|
}
|
|
}
|
|
}) |