From 9746368a961fca92131ba830b4baf2edbc6da5ff Mon Sep 17 00:00:00 2001 From: JP Dhabolt Date: Wed, 17 Apr 2024 15:03:14 -0400 Subject: [PATCH] Remove empty beforeAll test hooks Signed-off-by: JP Dhabolt --- .../auth-backend-module-oidc-provider/src/authenticator.test.ts | 2 -- plugins/auth-backend-module-oidc-provider/src/module.test.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/plugins/auth-backend-module-oidc-provider/src/authenticator.test.ts b/plugins/auth-backend-module-oidc-provider/src/authenticator.test.ts index 19628f6def..4f1db097d0 100644 --- a/plugins/auth-backend-module-oidc-provider/src/authenticator.test.ts +++ b/plugins/auth-backend-module-oidc-provider/src/authenticator.test.ts @@ -66,8 +66,6 @@ describe('oidcAuthenticator', () => { request_object_signing_alg_values_supported: ['RS256', 'RS512', 'HS256'], }; - beforeAll(async () => {}); - beforeEach(() => { mswServer.use( rest.get( diff --git a/plugins/auth-backend-module-oidc-provider/src/module.test.ts b/plugins/auth-backend-module-oidc-provider/src/module.test.ts index ad377e0769..34dce2fff4 100644 --- a/plugins/auth-backend-module-oidc-provider/src/module.test.ts +++ b/plugins/auth-backend-module-oidc-provider/src/module.test.ts @@ -57,8 +57,6 @@ describe('authModuleOidcProvider', () => { request_object_signing_alg_values_supported: ['RS256', 'RS512', 'HS256'], }; - beforeAll(async () => {}); - beforeEach(async () => { jest.clearAllMocks();