mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-01 22:09:55 +00:00
* Merge 2 npm repos * Install ts-jest * Update jestconfig * Fix jest types * jest fix * Fix babel config ref issue * Fix import * Fix import meta issue * fix generate * Skip multi-user tests
10 lines
256 B
TypeScript
10 lines
256 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);
|
|
});
|