Files
2026-07-13 12:58:18 +08:00

9 lines
158 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["src/**/*.test.ts"],
passWithNoTests: true,
},
});