chore: vnext unit tests (#758)

* fix: unit tests

* get unit tests running
This commit is contained in:
Peter Woodworth
2023-06-29 17:29:11 -07:00
committed by GitHub
parent d26f2d03f8
commit 7526948ef9
7 changed files with 50 additions and 164 deletions
+3 -1
View File
@@ -54,7 +54,9 @@ export class CredentialsClient {
const actualAccessKeyId = credentials.accessKeyId;
if (expectedAccessKeyId && expectedAccessKeyId !== actualAccessKeyId) {
throw new Error('Unexpected failure: Credentials loaded by the SDK do not match the access key ID configured by the action');
throw new Error(
'Unexpected failure: Credentials loaded by the SDK do not match the access key ID configured by the action'
);
}
}
}