8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
root: ".",
|
|
include: ["tests/**/*.test.{ts,tsx}"],
|
|
},
|
|
});
|