/** * WorthDoing.ai * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * File: vitest.config.ts * Description: Vitest configuration — unit tests for agent logic, scoring, dedup, and schemas. */ import { defineConfig } from "vitest/config"; import path from "path"; export default defineConfig({ test: { include: ["tests/**/*.test.ts"], environment: "node", }, resolve: { alias: { "@": path.resolve(__dirname, "src"), }, }, });