Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ZephireNZ committed Oct 8, 2024
1 parent 6da3e7b commit d729157
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/OidcClient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,8 @@ describe("OidcClient", () => {
});
const getStateMock = jest.spyOn(subject.settings.stateStore, "get")
.mockImplementation(async () => item.toStorageString());
const removeStateMock = jest.spyOn(subject.settings.stateStore, "remove").mockImplementation(async () => item.toStorageString());
const removeStateMock = jest.spyOn(subject.settings.stateStore, "remove")
.mockImplementation(async () => item.toStorageString());
jest.spyOn(subject["_validator"], "validateSigninResponse").mockResolvedValue();

// act
Expand Down

0 comments on commit d729157

Please sign in to comment.