test: unblock jest runner and fix failing test suites - #893
Merged
thlpkee20-wq merged 2 commits intoAug 31, 2026
Conversation
ts-jest 29.x crashed in getCacheKey whenever jest 30 reused a single worker
across many suites. Running ts-jest in isolatedModules mode skips the stale
resolved-module dependency-graph path, letting the full suite execute again.
Fixes surfaced by the now-runnable suite:
- errors: export createError/sendAppError, canonical UniqueConstraintError
message ("Duplicate value for field: <f>"), correct AppError arg order in tests
- distributionScheduler: add evaluateCron + Etc/UTC/GMT/Z timezone aliases;
key in-run dedup on report id (distinct reports sharing a window both run)
- revenueRoutes: extend the middleware/validate mock with zod validators
- stellar tests: mock the non-configurable @stellar/stellar-sdk via module mock
instead of assignment; read STELLAR_SERVER_SECRET live from process.env
- {=,InsufficientBalance} stray zero-byte artifacts removed
Also lands branch WIP: SMTP email provider docs and session-store helper scripts.
🤖 Generated with Codebuff
Co-Authored-By: Codebuff <noreply@codebuff.com>
|
@otobongdev Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ts-jest 29.x crashed in getCacheKey whenever jest 30 reused a single worker across many suites. Running ts-jest in isolatedModules mode skips the stale resolved-module dependency-graph path, letting the full suite execute again.
Fixes surfaced by the now-runnable suite:
Also lands branch WIP: SMTP email provider docs and session-store helper scripts.
Closes #858