mirror of
https://github.com/Lydanne/spaceflow.git
synced 2026-03-11 19:52:45 +08:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
root: "src",
|
|
globals: true,
|
|
environment: "node",
|
|
include: ["**/*.spec.ts"],
|
|
passWithNoTests: true,
|
|
},
|
|
});
|