✨(frontend) use title first emoji as doc icon in tree
Implemented emoji detection system, new DocIcon component.
This commit is contained in:
committed by
Anthony LC
parent
0b64417058
commit
d1cbdfd819
@@ -136,9 +136,11 @@ export const getGridRow = async (page: Page, title: string) => {
|
||||
|
||||
const rows = docsGrid.getByRole('row');
|
||||
|
||||
const row = rows.filter({
|
||||
hasText: title,
|
||||
});
|
||||
const row = rows
|
||||
.filter({
|
||||
hasText: title,
|
||||
})
|
||||
.first();
|
||||
|
||||
await expect(row).toBeVisible();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user