diff --git a/packages/html-reporter/src/common.css b/packages/html-reporter/src/common.css index 02e01a103b..12241fd861 100644 --- a/packages/html-reporter/src/common.css +++ b/packages/html-reporter/src/common.css @@ -46,6 +46,10 @@ svg { position: relative; } +.hidden { + visibility: hidden; +} + .d-flex { display: flex !important; } diff --git a/packages/html-reporter/src/testCaseView.spec.tsx b/packages/html-reporter/src/testCaseView.spec.tsx index a8ad110887..892ad51b7f 100644 --- a/packages/html-reporter/src/testCaseView.spec.tsx +++ b/packages/html-reporter/src/testCaseView.spec.tsx @@ -154,7 +154,7 @@ const resultWithAttachment: TestResult = { const attachmentLinkRenderingTestCase: TestCase = { testId: 'testid', title: 'My test', - path: [], + path: ['group'], projectName: 'chromium', location: { file: 'test.spec.ts', line: 42, column: 0 }, tags: [], @@ -206,6 +206,7 @@ test('should correctly render links in attachment name', async ({ mount }) => { test('should correctly render prev and next', async ({ mount }) => { const component = await mount(); await expect(component).toMatchAriaSnapshot(` + - text: group - link "« previous" - link "next »" - text: "My test test.spec.ts:42 10ms" diff --git a/packages/html-reporter/src/testCaseView.tsx b/packages/html-reporter/src/testCaseView.tsx index cb3cc95cef..320722fa9b 100644 --- a/packages/html-reporter/src/testCaseView.tsx +++ b/packages/html-reporter/src/testCaseView.tsx @@ -51,12 +51,13 @@ export const TestCaseView: React.FC<{ }, [test?.annotations]); return
-
- {prev && « previous} + {test &&
+
{test.path.join(' › ')}
- {next && next »} -
- {test &&
{test.path.join(' › ')}
} +
« previous
+
+
next »
+
} {test &&
{test?.title}
} {test &&