mirror of
https://github.com/sortedcord/omnia.git
synced 2026-07-22 20:12:48 +05:30
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["tests/evals/**/*.eval.ts"],
|
|
exclude: ["**/node_modules/**", "**/dist/**"]
|
|
}
|
|
});
|