fix: E2E test stability and UI performance improvements (#823)

This commit is contained in:
gsxdsm
2026-03-02 18:46:28 -08:00
committed by GitHub
parent 1c3d6434a8
commit 54d69e907b
9 changed files with 88 additions and 21 deletions

View File

@@ -13,6 +13,7 @@ import {
waitForNetworkIdle,
authenticateForTests,
handleLoginScreenIfPresent,
dismissSandboxWarningIfVisible,
} from '../../utils';
const TEST_TEMP_DIR = createTempDirPath('responsive-modal-test');
@@ -100,6 +101,9 @@ test.describe('AgentOutputModal Responsive Behavior', () => {
await expect(page.locator('[data-testid="board-view"]')).toBeVisible({ timeout: 10000 });
// Dismiss sandbox warning dialog if it appears (blocks pointer events)
await dismissSandboxWarningIfVisible(page);
// Wait for the verified feature card to appear
const featureCard = page.locator(`[data-testid="kanban-card-${featureId}"]`);
await expect(featureCard).toBeVisible({ timeout: 10000 });