ComfyUI / tests-ui /jest.config.js
brunvelop's picture
a
1abbc12
raw
history blame contribute delete
185 Bytes
/** @type {import('jest').Config} */
const config = {
testEnvironment: "jsdom",
setupFiles: ["./globalSetup.js"],
clearMocks: true,
resetModules: true,
};
module.exports = config;