mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 22:03:48 +00:00
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["test/**/*.test.ts"],
|
|
exclude: ["test/e2e/**/*.test.ts"],
|
|
},
|
|
});
|