comf2 / ComfyUI /tests-ui /globalSetup.js
ilya94prok's picture
Upload 400 files
97b9880 verified
raw
history blame
No virus
350 Bytes
module.exports = async function () {
global.ResizeObserver = class ResizeObserver {
observe() {}
unobserve() {}
disconnect() {}
};
const { nop } = require("./utils/nopProxy");
global.enableWebGLCanvas = nop;
HTMLCanvasElement.prototype.getContext = nop;
localStorage["Comfy.Settings.Comfy.Logging.Enabled"] = "false";
};