diff --git a/tests/e2e/journeys/onboarding.spec.ts b/tests/e2e/journeys/onboarding.spec.ts index 85eb535e2..a62618ba1 100644 --- a/tests/e2e/journeys/onboarding.spec.ts +++ b/tests/e2e/journeys/onboarding.spec.ts @@ -17,7 +17,10 @@ test('onboarding - free tier', async ({ page }) => { await test.step('create project', async () => { await page.waitForURL('/console/organization-**'); - await page.getByRole('article').getByRole('button', { name: 'Create project', exact: true }).click(); + await page + .getByRole('article') + .getByRole('button', { name: 'Create project', exact: true }) + .click(); await page.getByPlaceholder('Project name').click(); await page.getByPlaceholder('Project name').fill('Test Project'); await page.getByRole('button', { name: 'Next' }).click(); @@ -60,7 +63,10 @@ test('onboarding - pro', async ({ page }) => { await test.step('create project', async () => { await page.waitForURL('/console/organization-**'); - await page.getByRole('article').getByRole('button', { name: 'Create project', exact: true }).click(); + await page + .getByRole('article') + .getByRole('button', { name: 'Create project', exact: true }) + .click(); await page.getByPlaceholder('Project name').click(); await page.getByPlaceholder('Project name').fill('Test Project'); await page.getByRole('button', { name: 'Next' }).click();