mirror of
https://github.com/vitest-dev/vitest.git
synced 2026-02-01 17:36:51 +00:00
11 lines
184 B
TypeScript
11 lines
184 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['tests/**/*.spec.ts'],
|
|
chaiConfig: {
|
|
truncateThreshold: 0,
|
|
},
|
|
},
|
|
})
|