mirror of
https://github.com/Comfy-Org/ComfyUI.git
synced 2026-08-18 23:38:29 +08: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;
|