Files
openclaw/test/setup.ts
2026-04-07 06:32:36 +01:00

9 lines
181 B
TypeScript

import { afterAll } from "vitest";
import { installSharedTestSetup } from "./setup.shared.js";
const testEnv = installSharedTestSetup();
afterAll(() => {
testEnv.cleanup();
});