mirror of
https://fastgit.cc/github.com/openclaw/openclaw
synced 2026-04-22 13:52:19 +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();
|
|
};
|