mirror of
https://fastgit.cc/github.com/openclaw/openclaw
synced 2026-04-23 10:22:52 +08:00
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import { installTestEnv } from "./test-env";
|
|
|
|
export default async () => {
|
|
const { cleanup } = installTestEnv();
|
|
return () => cleanup();
|
|
};
|