10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['test/**/*.spec.js'],
|
|
passWithNoTests: true
|
|
}
|
|
})
|