mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
12 lines
247 B
JavaScript
12 lines
247 B
JavaScript
/** @type {import('jest').Config} */
|
|
const config = {
|
|
testEnvironment: "jsdom",
|
|
setupFiles: ["./globalSetup.js"],
|
|
setupFilesAfterEnv: ["./afterSetup.js"],
|
|
clearMocks: true,
|
|
resetModules: true,
|
|
testTimeout: 10000
|
|
};
|
|
|
|
module.exports = config;
|