import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'node', env: { SESSION_SECRET: 'test-secret', GOOGLE_CLIENT_ID: 'test-google-id', GOOGLE_CLIENT_SECRET: 'test-google-secret', TODOIST_CLIENT_ID: 'test-todoist-id', TODOIST_CLIENT_SECRET: 'test-todoist-secret', }, coverage: { provider: 'v8', reporter: ['text', 'lcov'], include: ['src/**'], }, }, });