diff --git a/packages/manager/src/features/Linodes/LinodeCreatev2/Security.test.tsx b/packages/manager/src/features/Linodes/LinodeCreatev2/Security.test.tsx index acd014cd307..d7ce47d6599 100644 --- a/packages/manager/src/features/Linodes/LinodeCreatev2/Security.test.tsx +++ b/packages/manager/src/features/Linodes/LinodeCreatev2/Security.test.tsx @@ -16,21 +16,17 @@ import { Security } from './Security'; import type { LinodeCreateFormValues } from './utilities'; -describe('Security', () => { - it( - 'should render a root password input', - async () => { - const { findByLabelText } = renderWithThemeAndHookFormContext({ - component: , - }); - - const rootPasswordInput = await findByLabelText('Root Password'); - - expect(rootPasswordInput).toBeVisible(); - expect(rootPasswordInput).toBeEnabled(); - }, - { timeout: 5_000 } - ); +describe('Security', { timeout: 5_000 }, () => { + it('should render a root password input', async () => { + const { findByLabelText } = renderWithThemeAndHookFormContext({ + component: , + }); + + const rootPasswordInput = await findByLabelText('Root Password'); + + expect(rootPasswordInput).toBeVisible(); + expect(rootPasswordInput).toBeEnabled(); + }); it('should render a SSH Keys heading', async () => { const { getAllByText } = renderWithThemeAndHookFormContext({