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 1c40ad0 commit 8eef09bCopy full SHA for 8eef09b
tst/unit/handlers/AuthHandler.test.ts
@@ -22,12 +22,12 @@ describe('AuthHandler', () => {
22
23
test('iamCredentialsUpdateHandler calls handleIamCredentialsUpdate', async () => {
24
const params: UpdateCredentialsParams = {
25
- data: {
+ data: JSON.stringify({
26
profile: 'test-profile',
27
accessKeyId: 'test',
28
secretAccessKey: 'test',
29
region: 'Region',
30
- },
+ }),
31
};
32
awsCredentials.handleIamCredentialsUpdate.resolves(true);
33
const result = await iamCredentialsUpdateHandler(mockComponents)(params, mockCancellationToken);
0 commit comments