From 54c79c404ce887d20af5b26c46fc4903b8da0b8e Mon Sep 17 00:00:00 2001 From: Pablo Zmdl Date: Thu, 25 Jun 2026 17:12:23 +0200 Subject: [PATCH] Remove console output in playwright test Signed-off-by: Pablo Zmdl --- php/tests/tests/initial-setup.spec.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/php/tests/tests/initial-setup.spec.js b/php/tests/tests/initial-setup.spec.js index 14636d8c..b766878c 100755 --- a/php/tests/tests/initial-setup.spec.js +++ b/php/tests/tests/initial-setup.spec.js @@ -33,7 +33,6 @@ test('Initial setup', async ({ page: setupPage }) => { await containersPage.locator('#timezone').click(); await containersPage.locator('#timezone').fill('Invalid time zone'); containersPage.once('dialog', dialog => { - console.log(`Dialog message: ${dialog.message()}`) dialog.accept() }); await containersPage.getByRole('button', { name: 'Submit timezone' }).click(); @@ -43,7 +42,6 @@ test('Initial setup', async ({ page: setupPage }) => { await containersPage.locator('#timezone').click(); await containersPage.locator('#timezone').fill('Europe/Berlin'); containersPage.once('dialog', dialog => { - console.log(`Dialog message: ${dialog.message()}`) dialog.accept() }); await containersPage.getByRole('button', { name: 'Submit timezone' }).click(); @@ -64,7 +62,6 @@ test('Initial setup', async ({ page: setupPage }) => { await containersPage.locator('#borg_backup_host_location').fill(borgBackupLocation); await containersPage.getByRole('button', { name: 'Submit backup location' }).click(); containersPage.once('dialog', dialog => { - console.log(`Dialog message: ${dialog.message()}`) dialog.accept() }); await containersPage.getByRole('button', { name: 'Create backup' }).click();