We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e2736 commit 1860d22Copy full SHA for 1860d22
packages/core/src/test/credentials/auth.test.ts
@@ -524,9 +524,10 @@ describe('Auth', function () {
524
})
525
526
await fs.delete(getCredentialsFilename())
527
-
+ console.log('file exists after delete=%O', await fs.exists(getCredentialsFilename()))
528
const newCreds = { ...initialCreds, accessKey: 'y', secretKey: 'y' }
529
await UserCredentialsUtils.generateCredentialsFile(newCreds)
530
+ console.log('file exists after generating=%O', await fs.exists(getCredentialsFilename()))
531
assert.deepStrictEqual(await conn.getCredentials(), {
532
accessKeyId: newCreds.accessKey,
533
secretAccessKey: newCreds.secretKey,
0 commit comments