good_upscaler / Backend /tests-ui /jest.config.js
Qdssa's picture
Upload 269 files
0035f04 verified
raw
history blame contribute delete
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;