From eeaf49f5cd810dd03b5f66875d7b9789ddaf4cb1 Mon Sep 17 00:00:00 2001 From: Samuel Stinkpost Date: Sat, 21 Mar 2026 03:48:52 +0000 Subject: [PATCH] style: fix Prettier formatting in ExemptionManager.test.tsx Co-Authored-By: Paperclip --- src/components/ExemptionManager.test.tsx | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/src/components/ExemptionManager.test.tsx b/src/components/ExemptionManager.test.tsx index 0ddb7dd..c164549 100644 --- a/src/components/ExemptionManager.test.tsx +++ b/src/components/ExemptionManager.test.tsx @@ -148,9 +148,7 @@ describe('ExemptionManager', () => { }); it('collects failing checks from container-level results', () => { - render( - - ); + render(); fireEvent.click(screen.getByRole('button', { name: /add exemption/i })); expect(screen.getByText('CPU Requests')).toBeInTheDocument(); }); @@ -311,11 +309,7 @@ describe('ExemptionManager', () => { it('uses core API path for Pod kind (no api group)', async () => { mockApiRequest.mockResolvedValue({}); render( - + ); fireEvent.click(screen.getByRole('button', { name: /add exemption/i })); fireEvent.click(screen.getByRole('checkbox', { name: /exempt from all checks/i })); @@ -332,11 +326,7 @@ describe('ExemptionManager', () => { it('uses batch API group for Job kind', async () => { mockApiRequest.mockResolvedValue({}); render( - + ); fireEvent.click(screen.getByRole('button', { name: /add exemption/i })); fireEvent.click(screen.getByRole('checkbox', { name: /exempt from all checks/i })); @@ -353,11 +343,7 @@ describe('ExemptionManager', () => { it('uses batch API group for CronJob kind', async () => { mockApiRequest.mockResolvedValue({}); render( - + ); fireEvent.click(screen.getByRole('button', { name: /add exemption/i })); fireEvent.click(screen.getByRole('checkbox', { name: /exempt from all checks/i }));