(test)
| 46 | } |
| 47 | |
| 48 | async function cleanupObject(test) { |
| 49 | if (!test.key) { |
| 50 | return; |
| 51 | } |
| 52 | await gcpClient.send(new DeleteObjectCommand({ |
| 53 | Bucket: bucketName, |
| 54 | Key: test.key, |
| 55 | })); |
| 56 | } |
| 57 | |
| 58 | describe('HEAD Object', () => { |
| 59 | describe('with existing object in bucket', () => { |