Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport cookie splitter #1662

Prev Previous commit
Next Next commit
Lint fixes
Signed-off-by: Jochen Kressin <jochen.kressin-gh@eliatra.com>
jochen-kressin committed Dec 27, 2023
commit 38bb2928993c042001107d092067204e5ce0bbfc
6 changes: 3 additions & 3 deletions server/auth/types/openid/openid_auth.test.ts
Original file line number Diff line number Diff line change
@@ -33,18 +33,18 @@ describe('test OpenId authHeaderValue', () => {
let esClient: ILegacyClusterClient;
let logger: Logger;

let router: Partial<IRouter> = {
const router: Partial<IRouter> = {
get: jest.fn(),
post: jest.fn(),
};
let core = ({
const core = ({
http: {
basePath: {
serverBasePath: '/',
},
resources: {
register: jest.fn(),
}
},
},
} as unknown) as CoreSetup;