From 3472515669af63285c06e936d64e3f9a03eb6528 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Thu, 10 Oct 2024 12:30:21 +0200 Subject: [PATCH] fix test --- packages/html-reporter/src/testCaseView.spec.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/html-reporter/src/testCaseView.spec.tsx b/packages/html-reporter/src/testCaseView.spec.tsx index 7c9c99eeb3..c4002cc904 100644 --- a/packages/html-reporter/src/testCaseView.spec.tsx +++ b/packages/html-reporter/src/testCaseView.spec.tsx @@ -27,6 +27,7 @@ const result: TestResult = { errors: [], steps: [{ title: 'Outer step', + category: 'test.step', startTime: new Date(100).toUTCString(), duration: 10, location: { file: 'test.spec.ts', line: 62, column: 0 }, @@ -34,6 +35,7 @@ const result: TestResult = { steps: [{ title: 'Inner step', startTime: new Date(200).toUTCString(), + category: 'test.step', duration: 10, location: { file: 'test.spec.ts', line: 82, column: 0 }, steps: [], @@ -134,6 +136,7 @@ const resultWithAttachment: TestResult = { errors: [], steps: [{ title: 'Outer step', + category: 'test.step', startTime: new Date(100).toUTCString(), duration: 10, location: { file: 'test.spec.ts', line: 62, column: 0 },