vitest.config.js 296 B

12345678910111213
  1. const { defineConfig } = require('vitest/config')
  2. module.exports = defineConfig({
  3. test: {
  4. include: [
  5. 'modules/*/test/unit/**/*.test.mjs',
  6. 'test/unit/src/**/*.test.mjs',
  7. ],
  8. setupFiles: ['./test/unit/vitest_bootstrap.mjs'],
  9. globals: true,
  10. isolate: false,
  11. },
  12. })