Remove unnecessary comment and fix eslint

This commit is contained in:
Tom Koscielniak 2025-08-19 10:29:33 +02:00 committed by Tomáš Koscielniak
parent 1eac7c2e50
commit 1e7814afca

View file

@ -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);