mirror of
https://github.com/farcasclaudiu/openclaw.git
synced 2026-06-22 13:01:50 +03:00
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import { installTestEnv } from "./test-env";
|
|
|
|
export default async () => {
|
|
const { cleanup } = installTestEnv();
|
|
return () => cleanup();
|
|
};
|