fix: favorite button will not work (#1228)

This commit is contained in:
Himself65
2023-03-01 10:50:23 -06:00
committed by GitHub
parent e0481d29ad
commit f6a620e0ac
2 changed files with 25 additions and 5 deletions
@@ -48,5 +48,12 @@ test.describe('Local first favorite items ui', () => {
expect(
page.getByRole('cell', { name: 'this is a new page to favorite' })
).not.toBeUndefined();
await page.getByRole('cell').getByRole('button').nth(0).click();
expect(
await page
.getByText('Click Add to Favorites and the page will appear here.')
.isVisible()
).toBe(true);
});
});