comf2 / ComfyUI /tests-ui /jest.config.js
ilya94prok's picture
Upload 400 files
97b9880 verified
raw
history blame
No virus
258 Bytes
/** @type {import('jest').Config} */
const config = {
testEnvironment: "jsdom",
setupFiles: ["./globalSetup.js"],
setupFilesAfterEnv: ["./afterSetup.js"],
clearMocks: true,
resetModules: true,
testTimeout: 10000
};
module.exports = config;