diff --git a/playwright/BootTests/Qcow2.spec.ts b/playwright/BootTests/Qcow2.spec.ts index 034a3a17..eb439327 100644 --- a/playwright/BootTests/Qcow2.spec.ts +++ b/playwright/BootTests/Qcow2.spec.ts @@ -22,7 +22,10 @@ import { test('Boot qcow2 image and test hostname', async ({ page, cleanup }) => { test.setTimeout(120 * 60 * 1000); // 2 hours - test.skip(!isHosted(), 'Skipping test. Boot test run only on the hosted service.'); + test.skip( + !isHosted(), + 'Skipping test. Boot test run only on the hosted service.', + ); const blueprintName = 'boot-test-qcow-' + uuidv4(); const filePath = constructFilePath(blueprintName, 'qcow2'); @@ -33,7 +36,6 @@ test('Boot qcow2 image and test hostname', async ({ page, cleanup }) => { await ensureAuthenticated(page); - // Navigate to IB landing page and get the frame await navigateToLandingPage(page); const frame = await ibFrame(page);