Skip to content

Commit 5c69a27

Browse files
committed
Fix frontend smoke routed utilities expectation
1 parent a4a3941 commit 5c69a27

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

frontend/e2e/smoke.spec.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ test.describe('frontend smoke', () => {
5151

5252
await expect(page.getByLabel('Page URL')).toBeVisible();
5353
await expect(page.getByRole('button', { name: 'Generate feed URL' })).toBeVisible();
54-
await expect(page.getByRole('button', { name: 'More' })).toBeVisible();
54+
await expect(page.getByLabel('Utilities')).toBeVisible();
55+
await expect(page.getByRole('link', { name: 'Bookmarklet' })).toBeVisible();
5556

5657
await page.getByLabel('Page URL').fill('https://example.com/articles');
5758
await page.getByRole('button', { name: 'Generate feed URL' }).click();
@@ -63,6 +64,7 @@ test.describe('frontend smoke', () => {
6364

6465
await page.getByRole('button', { name: 'Back' }).click();
6566
await expect(page.getByRole('button', { name: 'Generate feed URL' })).toBeVisible();
66-
await expect(page.getByRole('button', { name: 'More' })).toBeVisible();
67+
await expect(page.getByLabel('Utilities')).toBeVisible();
68+
await expect(page.getByRole('link', { name: 'Bookmarklet' })).toBeVisible();
6769
});
6870
});

0 commit comments

Comments
 (0)