stack/vitest.shared.ts
CactusBlue 816d64c850
In-source unit tests (#429)
Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com>
2025-02-14 11:47:52 -08:00

9 lines
184 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
include: ['**/*.test.{js,ts,jsx,tsx}'],
includeSource: ['**/*.{js,ts,jsx,tsx}'],
},
})