Files
oysqn.app/vitest.config.ts
Patrick Toal c789454810 docs: Update architecture for supabase
test: Add tests for auth workflow
2026-04-12 10:14:44 -04:00

18 lines
370 B
TypeScript

import { defineVitestConfig } from '@nuxt/test-utils/config'
export default defineVitestConfig({
test: {
environment: 'nuxt',
environmentOptions: {
nuxt: {
mock: {
intersectionObserver: true,
indexedDb: true,
},
},
},
include: ['tests/unit/**/*.test.ts'],
exclude: ['tests/integration/**'],
},
})