Skip to content

Commit 1860d22

Browse files
committed
add console.log statements
1 parent f4e2736 commit 1860d22

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/core/src/test/credentials/auth.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,9 +524,10 @@ describe('Auth', function () {
524524
})
525525

526526
await fs.delete(getCredentialsFilename())
527-
527+
console.log('file exists after delete=%O', await fs.exists(getCredentialsFilename()))
528528
const newCreds = { ...initialCreds, accessKey: 'y', secretKey: 'y' }
529529
await UserCredentialsUtils.generateCredentialsFile(newCreds)
530+
console.log('file exists after generating=%O', await fs.exists(getCredentialsFilename()))
530531
assert.deepStrictEqual(await conn.getCredentials(), {
531532
accessKeyId: newCreds.accessKey,
532533
secretAccessKey: newCreds.secretKey,

0 commit comments

Comments
 (0)