import { defineConfig } from 'vitest/config'; // Plain node vitest (no Workers runtime): embed backfill is tested against a fake env // (mock DB/AI/VECTORIZE) so logic is verified without Cloudflare bindings. export default defineConfig({ test: { include: ['tests/**/*.test.ts'], environment: 'node', }, });