Remove commented code

This commit is contained in:
Yury Semikhatsky 2024-07-15 11:27:20 -07:00
parent bece058bc7
commit 6b2db75e96

View file

@ -152,7 +152,6 @@ const attachmentLinkRenderingTestCase: TestCase = {
test('should correctly render links in attachments', async ({ mount }) => { test('should correctly render links in attachments', async ({ mount }) => {
const component = await mount(<TestCaseView projectNames={['chromium', 'webkit']} test={attachmentLinkRenderingTestCase} run={0} anchor=''></TestCaseView>); const component = await mount(<TestCaseView projectNames={['chromium', 'webkit']} test={attachmentLinkRenderingTestCase} run={0} anchor=''></TestCaseView>);
// const container = await(component.getByText('Annotations'));
await component.getByText('first attachment').click(); await component.getByText('first attachment').click();
const body = await component.getByText('The body with https://playwright.dev/docs/intro link'); const body = await component.getByText('The body with https://playwright.dev/docs/intro link');
await expect(body).toBeVisible(); await expect(body).toBeVisible();