mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-05 08:54:44 +02:00
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { afterAll } from "vitest";
|
|
import { installSharedTestSetup } from "./setup.shared.js";
|
|
|
|
const testEnv = installSharedTestSetup({ loadProfileEnv: false });
|
|
|
|
afterAll(() => {
|
|
testEnv.cleanup();
|
|
});
|