/** Vitest config for @elizaos/plugin-reminders: node environment over the src + test suites. */ import { defineConfig } from "vitest/config"; export default defineConfig({ test: { environment: "node", include: [ "src/**/*.{test,spec}.{ts,tsx}", "test/**/*.{test,spec}.{ts,tsx}", ], }, });