mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
// Global test setup installs shared environment before Vitest projects run.
|
|
import { installTestEnv } from "./test-env";
|
|
|
|
export default async () => {
|
|
const { cleanup } = installTestEnv();
|
|
return () => cleanup();
|
|
};
|