Skip to content

Commit

Permalink
more test output
Browse files Browse the repository at this point in the history
  • Loading branch information
taitruong committed Jun 7, 2024
1 parent c0aa966 commit b2bd342
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ts-relayer-tests/src/ics721.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ const standardSetup = async (t: ExecutionContext<TestContext>) => {
t.context.osmoClient = await setupOsmosisClient(MNEMONIC);

t.context.wasmAddr = t.context.wasmClient.senderAddress;
t.log(`wasm client address: ${t.context.wasmAddr}`);
t.context.osmoAddr = t.context.osmoClient.senderAddress;
t.log(`osmo client address: ${t.context.osmoAddr}`);

const { wasmClient, osmoClient } = t.context;

Expand Down Expand Up @@ -331,6 +333,7 @@ test.serial('transfer NFT: wasmd -> osmo', async (t) => {
},
};
transferResponse = await sendNft(wasmClient, wasmCw721, wasmCw721OutgoingProxy, ibcMsg, tokenId);
t.log(`- transfer response: ${JSON.stringify(transferResponse)}`);
t.truthy(transferResponse);

// Relay and verify we got an error
Expand Down

0 comments on commit b2bd342

Please sign in to comment.