jest.config.js 320 B

1234567
  1. const { defineJestConfig } = require("@pythnetwork/jest-config/define-config");
  2. module.exports = defineJestConfig({
  3. maxWorkers: 1, // Prevents serialization issues with BigInt during error reporting
  4. testPathIgnorePatterns: ["/node_modules/", "/dist/"],
  5. testTimeout: 60 * 1000 * 4, // 4 minutes for slow tests
  6. });