Skip to content

Commit

Permalink
test(send-anywhere): explicitly check result key is undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
0xpatrickdev committed Nov 29, 2024
1 parent 307700a commit 75319ad
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/boot/test/orchestration/restart-contracts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,12 @@ test.serial('send-anywhere', async t => {
id: 'send-somewhere',
numWantsSatisfied: 1,
error: undefined,
result: undefined,
},
});
if (conclusion.updated !== 'offerStatus') {
throw new Error('expected offerStatus');
}
t.true('result' in conclusion.status, 'transfer vow settled');
});

const validatorAddress: CosmosValidatorAddress = {
Expand Down

0 comments on commit 75319ad

Please sign in to comment.