feat(core): support sidebar collapse (#7630)

This commit is contained in:
EYHN
2024-07-29 09:57:33 +00:00
parent c5cf8480fc
commit 0472ffe569
17 changed files with 257 additions and 129 deletions

View File

@@ -131,6 +131,7 @@ test('can sync collections between different browser', async ({
await loginUser(page2, user.email);
await page2.goto(page.url());
const collections = page2.getByTestId('explorer-collections');
await collections.getByTestId('category-divider-collapse-button').click();
await expect(collections.getByText('test collection')).toBeVisible();
}
});