Files
smom-dbis-138/services/token-aggregation/jest.config.js
defiQUG 11c97777d4
Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m11s
CI/CD Pipeline / Security Scanning (push) Has been cancelled
CI/CD Pipeline / Lint and Format (push) Has been cancelled
CI/CD Pipeline / Terraform Validation (push) Has been cancelled
CI/CD Pipeline / Kubernetes Validation (push) Has been cancelled
Validation / validate-genesis (push) Has been cancelled
Validation / validate-terraform (push) Has been cancelled
Validation / validate-kubernetes (push) Has been cancelled
Validation / validate-smart-contracts (push) Has been cancelled
Validation / validate-security (push) Has been cancelled
Validation / validate-documentation (push) Has been cancelled
Deploy ChainID 138 / Deploy ChainID 138 (push) Failing after 1m4s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 31s
OMNL reconcile anchor / Run omnl:reconcile and upload artifacts (push) Failing after 29s
Verify Deployment / Verify Deployment (push) Failing after 57s
feat(chain138): Monad CCIP, token aggregation OMNL gates, HYBX client, and PMM deploy updates.
Relay router, reserve system, oracle publisher, token-aggregation compliance middleware, and Monad deployment scripts.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-18 00:11:33 -07:00

25 lines
917 B
JavaScript

/**
* GRU transport API tests require `config/token-mapping-loader.cjs` to export
* getGruTransportMetadata + getActiveTransportPairs backed by `config/gru-transport-active.json`
* (see Proxmox docs/04-configuration/GRU_TRANSPORT_LOADER_DESIGN_SPEC.md). Run them explicitly:
* RUN_GRU_TRANSPORT_LOADER_TESTS=1 npm run test:ci
*/
const runGruTransportLoaderTests = process.env.RUN_GRU_TRANSPORT_LOADER_TESTS === '1';
/** @type {import('jest').Config} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/src'],
testMatch: ['**/*.test.ts'],
moduleFileExtensions: ['ts', 'js', 'json'],
testPathIgnorePatterns: runGruTransportLoaderTests
? []
: [
'/src/config/gru-transport\\.test\\.ts$',
'/src/api/routes/token-mapping\\.test\\.ts$',
'/src/api/routes/bridge\\.test\\.ts$',
],
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
};