11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['test/**/*.test.{ts,tsx}'],
|
|
// The renderer modules under test (diff, fuzzy, highlight) are DOM-free.
|
|
globals: false,
|
|
},
|
|
})
|