jest.config.js 248 B

123456
  1. const { defineJestConfig } = require("@pythnetwork/jest-config");
  2. module.exports = defineJestConfig({
  3. maxWorkers: 1, // Prevents serialization issues with BigInt during error reporting
  4. testPathIgnorePatterns: ["/node_modules/", "/dist/"],
  5. });