From 1eac7c2e506daf73c907d5855b4a41c5f0c6b24d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Koscielniak?= Date: Tue, 19 Aug 2025 10:24:51 +0200 Subject: [PATCH] Add more clear test skip message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Anna Vítová <87140865+avitova@users.noreply.github.com> --- playwright/BootTests/Qcow2.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright/BootTests/Qcow2.spec.ts b/playwright/BootTests/Qcow2.spec.ts index 66cbf2b4..034a3a17 100644 --- a/playwright/BootTests/Qcow2.spec.ts +++ b/playwright/BootTests/Qcow2.spec.ts @@ -22,7 +22,7 @@ import { test('Boot qcow2 image and test hostname', async ({ page, cleanup }) => { test.setTimeout(120 * 60 * 1000); // 2 hours - test.skip(!isHosted(), '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');