import { defineConfig } from "vitest/config"; // Kept separate from vite.config.js: the tests exercise plain modules, so they // need a DOM but none of the React/build plugins. // export default defineConfig({ test: { environment: "jsdom", include: ["src/**/*.test.js"], }, });