From 95939475558df7f8d3b50c06c3d5c3fb6ddabd05 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Mon, 3 Feb 2025 10:45:49 +0100 Subject: [PATCH] add annotation --- tests/playwright-test/reporter.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright-test/reporter.spec.ts b/tests/playwright-test/reporter.spec.ts index e8adaef742..67a8250086 100644 --- a/tests/playwright-test/reporter.spec.ts +++ b/tests/playwright-test/reporter.spec.ts @@ -735,7 +735,7 @@ test('step attachments are referentially equal to result attachments', async ({ ]); }); -test('attachments are reported in onStepEnd', async ({ runInlineTest }) => { +test('attachments are reported in onStepEnd', { annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/14364' } }, async ({ runInlineTest }) => { class TestReporter implements Reporter { onStepEnd(test: TestCase, result: TestResult, step: TestStep) { console.log(`%%${step.title}: ${result.attachments.length} attachments in result`);