From ecf3a584ec910b8bfee5d60ca4e4ee5b8808f2a3 Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Fri, 29 Sep 2023 10:12:25 +0200 Subject: [PATCH] Update e2e test which was failing since the element text has been changed. --- e2e/deploy.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/deploy.spec.ts b/e2e/deploy.spec.ts index 1b70987..b113560 100644 --- a/e2e/deploy.spec.ts +++ b/e2e/deploy.spec.ts @@ -17,7 +17,7 @@ test('Verify SDL addon is deployed properly', async ({page}) => { const configLinks = page.getByRole('link', {name: 'Configuration'}); await expect(configLinks).toHaveCount(1); await expect(configLinks.first()).toHaveAttribute('href','/en-US/app/TA_dataset/configuration'); - const exampleLinks = page.getByRole('link', {name: 'DataSet by Example'}); + const exampleLinks = page.getByRole('link', {name: 'Singularity Data Lake by Example'}); await expect(exampleLinks).toHaveCount(1); await expect(exampleLinks.first()).toHaveAttribute('href','/en-US/app/TA_dataset/dataset_by_example'); const searchLinks = page.getByRole('link', {name: 'Search'});