mirror of
https://github.com/sortedcord/omnia.git
synced 2026-07-22 12:02:49 +05:30
13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import dotenv from "dotenv";
|
|
|
|
// Load environment variables for evals at test process startup
|
|
dotenv.config();
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["tests/evals/**/*.eval.ts"],
|
|
exclude: ["**/node_modules/**", "**/dist/**"]
|
|
}
|
|
});
|