Skip to content

Commit

Permalink
chore: deps (#223)
Browse files Browse the repository at this point in the history
* chore: deps

* chore: only
  • Loading branch information
kleyow authored Oct 30, 2024
1 parent 349fdf6 commit 0b8ccd7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
}
],
"dependencies": {
"@mojaloop/ml-schema-transformer-lib": "^2.3.1",
"@mojaloop/ml-schema-transformer-lib": "^2.3.3",
"base64url": "3.0.1",
"fast-safe-stringify": "^2.1.1",
"ilp-packet": "3.1.3",
Expand Down
5 changes: 3 additions & 2 deletions test/unit/lib/requests/mojaloopRequests.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -856,8 +856,9 @@ describe('MojaloopRequests', () => {
});

const testMr = new mr(conf);
const isoPostQuoteContext = await TransformFacades.FSPIOP.quotes.post({body: postQuotesBody});
const res = await testMr.postTransfers(postTransfersBody, 'somefsp', {isoPostQuote: isoPostQuoteContext.body});
const isoPostQuote = await TransformFacades.FSPIOP.quotes.post({body: postQuotesBody});
const isoPutQuoteContext = await TransformFacades.FSPIOP.quotes.put({params: {ID: '1234'}, body: putQuotesBody, $context: {isoPostQuote: isoPostQuote.body}});
const res = await testMr.postTransfers(postTransfersBody, 'somefsp', {isoPostQuoteResponse: isoPutQuoteContext.body});

const reqBody = JSON.parse(res.originalRequest.body);

Expand Down

0 comments on commit 0b8ccd7

Please sign in to comment.