mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-15 14:49:29 +00:00
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import { installTestEnv } from "./test-env";
|
|
|
|
export default async () => {
|
|
const { cleanup } = installTestEnv();
|
|
return () => cleanup();
|
|
};
|