Skip to content

Commit

Permalink
Update e2e test which was failing since the element text has been
Browse files Browse the repository at this point in the history
changed.
  • Loading branch information
tomaz-s1 committed Sep 29, 2023
1 parent 1b562c4 commit ecf3a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/deploy.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'});
Expand Down

0 comments on commit ecf3a58

Please sign in to comment.