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