feat: added processAnchorRefund function#115
Open
Day-veed wants to merge 1 commit intoMissBlue00:mainfrom
Open
feat: added processAnchorRefund function#115Day-veed wants to merge 1 commit intoMissBlue00:mainfrom
Day-veed wants to merge 1 commit intoMissBlue00:mainfrom
Conversation
|
@Day-veed is attempting to deploy a commit to the missblue00's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
@Day-veed 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! 🚀 |
Owner
|
@Day-veed the ci/cd checks failed, please resolve |
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.
Description
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
Fixes # (issue)
#88 Add processAnchorRefund function
Type of change
Closes #88 Add processAnchorRefund function
Please delete options that are not relevant.
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
I added a Jest unit test suite in packages/anchor-service/src/index.spec.ts that covers all refund scenarios:
Test A: Full refund – Verifies a failed transaction is fully refunded and status updates to refunded
Test B: Partial refund – Verifies partial refund handling and status updates to partially_refunded
Test C: Skip when not failed – Verifies no refund is processed when transaction status isn’t failed
Test D: Refund executor failure – Verifies transaction status is set to refund_failed and error is rethrown
Test Configuration:
Framework: Jest with ts-jest
TypeScript: Strict mode enabled
Environment: Node
Dependencies: In-memory mocks for AnchorTransactionRepository and AnchorRefundExecutor
To run tests:
pnpm --filter @stellar-pay/anchor-service test
Checklist: