mirror of
https://github.com/nvms/soma3.git
synced 2025-12-13 14:40:52 +00:00
9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["src/**/*.{test,spec}.ts"],
|
|
environment: "happy-dom",
|
|
},
|
|
});
|