cloudant / nodejs-cloudant

Cloudant Node.js client library
Apache License 2.0
255 stars 90 forks source link

Concatenate streaming data in client tests #423

Closed emlaver closed 4 years ago

emlaver commented 4 years ago

Checklist

Description

Some of the tests assert on streaming response data in the data callback. This can cause a failure since the assertion will fail in a case where there's more than one chunk of streaming data. This PR concatenates the streaming data then asserts once the stream is completed in end block.

Approach