Files
docker_dev/lowcoder/server/node-service/jest.config.js
2025-11-17 18:45:35 +01:00

9 lines
243 B
JavaScript

/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
testTimeout: 10 * 60000,
testPathIgnorePatterns: ["/node_modules/", "/build/"],
setupFiles: ["./jest.setup.ts"],
};