From f92edc27322975ac9ece07827ad0d0c58c303add Mon Sep 17 00:00:00 2001 From: Jake Urban <10968980+JakeUrban@users.noreply.github.com> Date: Wed, 17 Aug 2022 09:39:07 -0700 Subject: [PATCH] add network calls for SEP-12 test (#95) --- @stellar/anchor-tests/package.json | 2 +- @stellar/anchor-tests/src/tests/sep12/putCustomer.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/@stellar/anchor-tests/package.json b/@stellar/anchor-tests/package.json index d0a9eed..fc07142 100644 --- a/@stellar/anchor-tests/package.json +++ b/@stellar/anchor-tests/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/anchor-tests", - "version": "0.5.2", + "version": "0.5.3", "description": "stellar-anchor-tests is a library and command line interface for testing Stellar anchors.", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/@stellar/anchor-tests/src/tests/sep12/putCustomer.ts b/@stellar/anchor-tests/src/tests/sep12/putCustomer.ts index 05fd251..7a8969b 100644 --- a/@stellar/anchor-tests/src/tests/sep12/putCustomer.ts +++ b/@stellar/anchor-tests/src/tests/sep12/putCustomer.ts @@ -307,6 +307,7 @@ export const differentMemosSameAccount: Test = { const sendingCustomerCall: NetworkCall = { request: sep12Request, }; + result.networkCalls.push(sendingCustomerCall); const sendingCustomerResponse = await makeRequest( sendingCustomerCall, 202, @@ -338,6 +339,7 @@ export const differentMemosSameAccount: Test = { const receivingCustomerCall: NetworkCall = { request: receivingCustomerRequest, }; + result.networkCalls.push(receivingCustomerCall); const receivingCustomerResponse = await makeRequest( receivingCustomerCall, 202,