Skip to content

Commit

Permalink
Fix prettify errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Rik Roots committed Dec 31, 2024
1 parent 197e8ca commit a21fea4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions bootstrapping-lambda/src/middleware/auth-middleware.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ import { getVerifiedUserEmail } from "../panDomainAuth";
jest.mock("../permissionCheck");
jest.mock("../panDomainAuth");

const mockedGetVerifiedUserEmail = jest.mocked(getVerifiedUserEmail, {shallow: true});
const mockedUserHasPermission = jest.mocked(userHasPermission, {shallow: true});
const mockedGetVerifiedUserEmail = jest.mocked(getVerifiedUserEmail, {
shallow: true,
});
const mockedUserHasPermission = jest.mocked(userHasPermission, {
shallow: true,
});

const mockNextFunction = jest.fn();

Expand Down

0 comments on commit a21fea4

Please sign in to comment.