mirror of
https://github.com/rookiestar28/ComfyUI-OpenClaw.git
synced 2026-08-14 08:52:45 +00:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "jsdom",
|
|
setupFiles: ["./web/tests/unit/setup.js"],
|
|
include: ["web/tests/unit/**/*.test.js"],
|
|
restoreMocks: true,
|
|
clearMocks: true,
|
|
},
|
|
});
|