()
| 18 | let backbeatAuthCredentials = null; |
| 19 | |
| 20 | async function getCredentials() { |
| 21 | const creds = await s3.config.credentials(); |
| 22 | credentials = { |
| 23 | accessKey: creds.accessKeyId, |
| 24 | secretKey: creds.secretAccessKey, |
| 25 | }; |
| 26 | return credentials; |
| 27 | } |
| 28 | |
| 29 | const TEST_BUCKET = 'bucket-for-bucket-indexing'; |
| 30 |
no outgoing calls
no test coverage detected