mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-11 01:33:56 +00:00
8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
import { afterAll } from "vitest";
|
|
import { installSharedTestSetup } from "./setup.shared.js";
|
|
|
|
const testEnv = installSharedTestSetup();
|
|
|
|
afterAll(() => {
|
|
testEnv.cleanup();
|
|
});
|