feat(core): add tag operation to tag list (#5998)

https://github.com/toeverything/AFFiNE/assets/102217452/11745733-0d7b-494b-97fd-33e40a240a02
This commit is contained in:
JimmFly
2024-03-11 08:36:07 +00:00
parent cb96d7de43
commit b26efa4940
22 changed files with 693 additions and 105 deletions
+2 -2
View File
@@ -210,7 +210,7 @@ test('select two pages and delete', async ({ page }) => {
// the floating popover should appear
await expect(page.locator('[data-testid="floating-toolbar"]')).toBeVisible();
await expect(page.locator('[data-testid="floating-toolbar"]')).toHaveText(
'2 selected'
'2 doc(s) selected'
);
// click delete button
@@ -253,6 +253,6 @@ test('select a group of items by clicking "Select All" in group header', async (
// check the selected count is equal to the one displayed in the floating toolbar
await expect(page.locator('[data-testid="floating-toolbar"]')).toHaveText(
`${selectedItemCount} selected`
`${selectedItemCount} doc(s) selected`
);
});