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

15 lines
285 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'node',
include: ['tests/integration/**/*.test.ts'],
testTimeout: 30000,
},
resolve: {
alias: {
'~': new URL('./app', import.meta.url).pathname,
},
},
})