10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
const { defineConfig } = require('vitest/config');
|
|
|
|
module.exports = defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
globals: true,
|
|
include: ['src/utils/**/*.test.js'],
|
|
},
|
|
});
|