From cd44ee38666b8eb2a9edff81ae7ca0f2fc8de026 Mon Sep 17 00:00:00 2001 From: mirivlad Date: Tue, 14 Jul 2026 23:13:59 +0800 Subject: [PATCH] test: expect Deal label in journal review --- frontend/e2e/ux-today.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/e2e/ux-today.spec.js b/frontend/e2e/ux-today.spec.js index 450d5bf..e591752 100644 --- a/frontend/e2e/ux-today.spec.js +++ b/frontend/e2e/ux-today.spec.js @@ -251,7 +251,7 @@ test.describe('UX Overview workspace flow', () => { await expect(attention).toContainText('Deal: Project · 10 min · 2 activities'); await attention.locator('.overview-attention-row', { hasText: 'Possible journal entry' }).getByRole('button', { name: 'Review candidate' }).click(); await expect(page.getByRole('tab', { name: 'Journal' })).toHaveAttribute('aria-selected', 'true'); - await expect(page.locator('.journal-root [data-journal-candidate]')).toContainText('Workspace: Project'); + await expect(page.locator('.journal-root [data-journal-candidate]')).toContainText('Deal: Project'); await page.locator('.journal-modal-actions').getByRole('button', { name: 'Cancel' }).click(); await page.getByRole('tab', { name: 'Overview' }).click();