algorand / algorand-sdk-testing

Testing framework for Algorand SDKs
MIT License
20 stars 35 forks source link

tests: Add json deltas, update sleep time #298

Closed Eric-Warehime closed 1 year ago

Eric-Warehime commented 1 year ago

Two things in this PR

  1. Adds json response tests for txn group deltas. Because of the issues w/ the json msgp decoder, we've decided to use the json response format in the JS SDK. This adds response tests for that under a new test tag.
  2. Because of the recent sandbox changes we're now using conduit/indexer to ingest data from dev mode algod. It seems like this introduces slightly more delay in retrying block gets because there are some failures retrieving data in the application tests after the 500 millisecond sleeps. See this go-algorand-sdk test run for example. I've double the wait time to ensure data propagates before the test runs.
bbroder-algo commented 1 year ago

looks like good work thank you