diff --git a/iam/__tests__/index.test.ts b/iam/__tests__/index.test.ts index 2991d0776b..0ec9092848 100644 --- a/iam/__tests__/index.test.ts +++ b/iam/__tests__/index.test.ts @@ -519,7 +519,7 @@ describe("POST /verify", function () { expect((response.body[1] as ValidResponseBody).credential.credentialSubject.id).toEqual(expectedId); }); - it("handles valid challenge requests with multiple types, and acumulates values between provider calls", async () => { + it("handles valid challenge requests with multiple types, and accumulates values between provider calls", async () => { // challenge received from the challenge endpoint const challenge = { issuer: issuer, diff --git a/platforms/src/Google/Providers/__tests__/google.test.ts b/platforms/src/Google/Providers/__tests__/google.test.ts index 8a17442b8b..e7554cd102 100644 --- a/platforms/src/Google/Providers/__tests__/google.test.ts +++ b/platforms/src/Google/Providers/__tests__/google.test.ts @@ -75,7 +75,7 @@ describe("verifyGoogle", function () { jest.restoreAllMocks(); }); - it("should suceed when a access token and user info are obtained", async () => { + it("should succeed when a access token and user info are obtained", async () => { const requestAccessTokenMock = jest.spyOn(google, "requestAccessToken").mockImplementation((): Promise => { return new Promise((resolve) => { resolve(MOCK_ACCESS_TOKEN);