From fdd39c14ac47706b6d34d0e0894cbf795d5fc35b Mon Sep 17 00:00:00 2001 From: Aman Kumar Date: Thu, 28 Mar 2024 23:16:38 +0530 Subject: [PATCH] Write test cases for copy annotation text feature --- packages/html-reporter/src/copyToClipboard.tsx | 2 +- packages/html-reporter/src/testCaseView.spec.tsx | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/html-reporter/src/copyToClipboard.tsx b/packages/html-reporter/src/copyToClipboard.tsx index a24015a671..85132a40df 100644 --- a/packages/html-reporter/src/copyToClipboard.tsx +++ b/packages/html-reporter/src/copyToClipboard.tsx @@ -34,5 +34,5 @@ export const CopyToClipboard: React.FunctionComponent<{ }); }, [value]); const iconElement = icon === 'check' ? icons.check() : icon === 'cross' ? icons.cross() : icons.copy(); - return ; + return ; }; diff --git a/packages/html-reporter/src/testCaseView.spec.tsx b/packages/html-reporter/src/testCaseView.spec.tsx index 0a4da91b6e..259ab163ad 100644 --- a/packages/html-reporter/src/testCaseView.spec.tsx +++ b/packages/html-reporter/src/testCaseView.spec.tsx @@ -64,7 +64,13 @@ const testCase: TestCase = { test('should render test case', async ({ mount }) => { const component = await mount(); - await expect(component.getByText('Annotation text', { exact: false }).first()).toBeVisible(); + const firstAnnotationElement = component.getByText('Annotation text', { exact: false }).first(); + await expect(firstAnnotationElement).toBeVisible(); + await expect(component.getByRole('button', { name: 'copy to clipboard' }).first()).not.toBeVisible(); + await expect(component.getByRole('button', { name: 'copy to clipboard' }).nth(1)).not.toBeVisible(); + await firstAnnotationElement.hover(); + await expect(component.getByRole('button', { name: 'copy to clipboard' }).first()).toBeVisible(); + await expect(component.getByRole('button', { name: 'copy to clipboard' }).nth(1)).not.toBeVisible(); await component.getByText('Annotations').click(); await expect(component.getByText('Annotation text')).not.toBeVisible(); await expect(component.getByText('Outer step')).toBeVisible();