chore: run formatter

This commit is contained in:
Torsten Dittmann
2024-03-21 18:26:29 +02:00
parent ec9df15c18
commit f29ca5285f
+8 -2
View File
@@ -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();