mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 18:35:17 +00:00
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
|
const { start } = require("./utils");
|
||
|
const lg = require("./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);
|
||
|
});
|