Spaces:
Sleeping
Sleeping
File size: 275 Bytes
97b9880 |
1 2 3 4 5 6 7 8 9 10 |
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);
});
|