elbuhoui / tests-ui /afterSetup.js
firzaelbuho's picture
Upload 364 files
6c4f135 verified
raw
history blame contribute delete
266 Bytes
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);
});