chore: remove unnecessary console.log

This commit is contained in:
Torsten Dittmann
2024-04-17 15:29:37 +02:00
parent 0e68346f48
commit 7d41722081
-1
View File
@@ -16,7 +16,6 @@ export async function createFreeProject(page: Page): Promise<Metadata> {
plan.selectOption('tier-0');
await page.getByRole('button', { name: 'Get started' }).click();
await page.waitForURL('/console/organization-**');
console.log(page.url());
return getOrganizationIdFromUrl(page.url());
});