Remove unnecessary comment and fix eslint
This commit is contained in:
parent
1eac7c2e50
commit
1e7814afca
1 changed files with 4 additions and 2 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue