feat: preserve assistant progress previews
This commit is contained in:
@@ -215,7 +215,7 @@ async function installCodingFirstChatHost(
|
||||
output: [{
|
||||
kind: 'text',
|
||||
id: 'browser-output-e2e',
|
||||
text: `${'Checking browser runtime state and the latest navigation checkpoint. '.repeat(5)}Browser ready`,
|
||||
text: `${'Checking browser runtime state and the latest navigation checkpoint. '.repeat(8)}Browser ready`,
|
||||
status: 'complete',
|
||||
}],
|
||||
details: { schema: 'agent-browser.v1', action: 'status' },
|
||||
@@ -689,13 +689,13 @@ test('PI feature UI isolates Conversations and exposes queue, interaction, model
|
||||
await expect(activeProcess).toHaveAttribute('open', '');
|
||||
await expect(activeProcess.locator('summary').first()).toContainText('处理中');
|
||||
const activeThinking = page.getByLabel('思考过程');
|
||||
await expect(activeThinking).toContainText('Preparing the smallest safe next step.');
|
||||
await expect(activeThinking).not.toContainText('Inspecting the project before responding.');
|
||||
await expect(activeThinking).toContainText('Inspecting the project before responding.');
|
||||
await expect(activeThinking).not.toContainText('Preparing the smallest safe next step.');
|
||||
await expect(activeThinking).toHaveAttribute('data-collapsed-lines', '1');
|
||||
await expect(activeThinking).toHaveAttribute('data-expanded', 'false');
|
||||
await expect(activeThinking).toHaveAttribute('data-streaming', 'true');
|
||||
const activeThinkingPreview = activeThinking.getByTestId('process-progress-preview');
|
||||
await expect(activeThinkingPreview).toHaveAttribute('data-progress-tail', 'true');
|
||||
await expect(activeThinkingPreview).toHaveAttribute('data-progress-origin', 'head');
|
||||
await expect(activeThinkingPreview).toHaveAttribute('data-progress-alignment', 'left');
|
||||
await expect(activeThinkingPreview).toHaveAttribute('data-progress-update-motion', 'none');
|
||||
await expect(activeThinkingPreview).not.toHaveAttribute('data-roll-revision');
|
||||
@@ -727,6 +727,7 @@ test('PI feature UI isolates Conversations and exposes queue, interaction, model
|
||||
await expect(activeCommentary).toHaveClass(/text-foreground/);
|
||||
const activeCommentaryPreview = activeCommentary.getByTestId('process-progress-preview');
|
||||
await expect(activeCommentaryPreview).toContainText('Durable assistant response');
|
||||
await expect(activeCommentaryPreview).toHaveAttribute('data-progress-origin', 'head');
|
||||
await expect(activeCommentaryPreview).toHaveClass(/text-foreground/);
|
||||
await expect(activeCommentaryPreview).not.toHaveClass(/text-muted-foreground/);
|
||||
await expect(activeCommentaryPreview).toHaveAttribute('data-progress-shimmer', 'false');
|
||||
@@ -745,9 +746,11 @@ test('PI feature UI isolates Conversations and exposes queue, interaction, model
|
||||
const compactToolSummary = compactTool.locator('> summary');
|
||||
await expect(compactTool).not.toHaveAttribute('open', '');
|
||||
await expect(compactToolSummary).toHaveAttribute('data-collapsed-lines', '1');
|
||||
await expect(compactTool.getByTestId('tool-progress-preview')).toContainText('Browser ready');
|
||||
await expect(compactTool.getByTestId('tool-progress-preview'))
|
||||
.toHaveAttribute('data-progress-tail', 'true');
|
||||
.toContainText('Checking browser runtime state');
|
||||
await expect(compactTool.getByTestId('tool-progress-preview')).not.toContainText('Browser ready');
|
||||
await expect(compactTool.getByTestId('tool-progress-preview'))
|
||||
.toHaveAttribute('data-progress-origin', 'head');
|
||||
const toolProgressViewport = compactTool.getByTestId('tool-progress-preview');
|
||||
await expect(toolProgressViewport).toHaveAttribute('data-progress-alignment', 'left');
|
||||
await expect(toolProgressViewport).toHaveAttribute('data-progress-shimmer', 'false');
|
||||
@@ -759,10 +762,7 @@ test('PI feature UI isolates Conversations and exposes queue, interaction, model
|
||||
scrollWidth: element.scrollWidth,
|
||||
}));
|
||||
expect(toolProgressScroll.scrollWidth).toBeGreaterThan(toolProgressScroll.clientWidth);
|
||||
expect(Math.abs(
|
||||
toolProgressScroll.scrollLeft
|
||||
- (toolProgressScroll.scrollWidth - toolProgressScroll.clientWidth),
|
||||
)).toBeLessThanOrEqual(2);
|
||||
expect(Math.abs(toolProgressScroll.scrollLeft)).toBeLessThanOrEqual(2);
|
||||
const compactToolBounds = await compactToolSummary.boundingBox();
|
||||
expect(compactToolBounds).not.toBeNull();
|
||||
expect(compactToolBounds!.height).toBeLessThanOrEqual(33);
|
||||
|
||||
Reference in New Issue
Block a user