diff --git a/tests/test_auction_flow.sh b/tests/test_auction_flow.sh index 9e884cc..25445cf 100755 --- a/tests/test_auction_flow.sh +++ b/tests/test_auction_flow.sh @@ -61,7 +61,15 @@ colineard tx colinearcore new-bid $(get_last_auction_index) 0 \ colineard q colinearcore auction-bids $(get_last_auction_index) \ | jq -M ".bids | length" \ - | assert_eq 2 "Number of auction bids" + | assert_eq 2 "Number of auction bids in auctionBids query" + +colineard q colinearcore auction-info $(get_last_auction_index) \ + | jq -rM ".bids | length" \ + | assert_eq 2 "Number of auction bids in auctionInfo query" + +colineard q colinearcore auction-info $(get_last_auction_index) \ + | jq -rM ".verifiedProviders" \ + | assert_eq "[]" "Verified Provider list in auctionInfo query" before=$(get_balance $BOB uusdc)