mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-30 21:09:53 +00:00
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
import { start } from "./utils";
|
|
import lg from "./utils/litegraph";
|
|
|
|
// Load things once per test file before to ensure its all warmed up for the tests
|
|
beforeAll(async () => {
|
|
lg.setup(global);
|
|
await start({ resetEnv: true });
|
|
lg.teardown(global);
|
|
});
|