mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-10 21:42:37 +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;
|