Remove community workspace dropdown UI
Deploy / deploy (push) Successful in 2m30s
CI / Rust Checks (push) Successful in 5m32s
CI / UI Checks (push) Successful in 5s
CI / Deployment Manifests (push) Successful in 2s
CI / Frontend E2E (push) Failing after 4m46s

This commit is contained in:
github-ops
2026-06-19 17:59:57 +00:00
parent 58cfd86d90
commit 0d8a36e4d4
12 changed files with 52 additions and 337 deletions
+2 -4
View File
@@ -4,10 +4,8 @@ const { login, localized } = require('./helpers');
test('operations page shows demo catalog and filter works', async ({ page }) => {
await login(page);
await expect(page.locator('.page-heading')).toHaveText(localized('Operations', 'Операции'));
await page.locator('.ws-switcher-trigger').click();
await expect(page.locator('#ws-dropdown')).toBeVisible();
await page.mouse.click(900, 220);
await expect(page.locator('#ws-dropdown')).toBeHidden();
await expect(page.locator('.ws-switcher-trigger')).toBeVisible();
await expect(page.locator('#ws-dropdown')).toHaveCount(0);
await expect(page.locator('tbody tr')).toHaveCount(2);
await page.getByPlaceholder(localized('Search operations', 'Поиск операций')).fill('crm');
await expect(page.locator('tbody tr')).toHaveCount(1);