(bucket, key, cb)
| 177 | } |
| 178 | |
| 179 | function getObject(bucket, key, cb) { |
| 180 | s3Client.send(new GetObjectCommand({ Bucket: bucket, Key: key })) |
| 181 | .then(data => cb(null, data)) |
| 182 | .catch(cb); |
| 183 | } |
| 184 | |
| 185 | describe('utapi v2 metrics incoming and outgoing bytes', function t() { |
| 186 | this.timeout(30000); |