You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
572 B

  1. // vitest.config.ts
  2. import { fileURLToPath } from 'node:url'
  3. import { defineVitestConfig } from '@nuxt/test-utils/config'
  4. export default defineVitestConfig({
  5. test: {
  6. environment: 'nuxt',
  7. // you can optionally set Nuxt-specific environment options
  8. // environmentOptions: {
  9. // nuxt: {
  10. // rootDir: fileURLToPath(new URL('./playground', import.meta.url)),
  11. // domEnvironment: 'happy-dom', // 'happy-dom' (default) or 'jsdom'
  12. // overrides: {
  13. // // other Nuxt config you want to pass
  14. // }
  15. // }
  16. // }
  17. }
  18. })