Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: update migration report and validation fixes
Agent-Logs-Url: https://github.com/superdesk/superdesk-client-core/sessions/d3f35282-bf9b-42d6-bdbd-8360c01fcd7d

Co-authored-by: eos87 <124766+eos87@users.noreply.github.com>
  • Loading branch information
Copilot and eos87 authored May 20, 2026
commit 6b988af16a0e7743ef4dbf3d7de2f14c3c476350
6 changes: 3 additions & 3 deletions e2e/MIGRATION_REPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
## Totals
- Original non-Playwright specs: 30
- Migrated: 4
- Blocked: 0 (see below)
- Blocked: 1 (see below)
- Obsolete: 0 (see below)
- Flaky: 0 (see below)
- Redundant: 0 (see below)
Expand All @@ -15,10 +15,10 @@
- Protractor `e2e/client/specs/workspace_spec.ts` -> `e2e/client/playwright/workspace.spec.ts` [65a6ef935] — Given the authenticated user is on the dashboard, when they use the workspace hotkeys, then the app switches to monitoring, spiked, personal, search, and back to dashboard.
- Protractor `e2e/client/specs/vocabularies_spec.ts` -> `e2e/client/playwright/vocabularies.spec.ts` [4b719937a] — Given the vocabularies settings page is open, when the user edits the Categories vocabulary name and cancels, then the original vocabulary data is restored.
- Protractor `e2e/client/specs/subscribers_spec.ts` -> `e2e/client/playwright/subscribers.spec.ts` [a50a98854] — Given the publish settings page is open, when the user inspects and edits the default subscriber from the snapshot, then the list shows that subscriber and the save button only enables after changing the target type and destination format.
- Protractor `e2e/client/specs/suggest_spec.ts` -> `e2e/client/playwright/suggest.spec.ts` [pending] — Given an authenticated user opens a new text item, when they open Live suggestions before changing the body, then the suggestions list is empty.
- Protractor `e2e/client/specs/suggest_spec.ts` -> `e2e/client/playwright/suggest.spec.ts` [df73cc578] — Given an authenticated user opens a new text item, when they open Live suggestions before changing the body, then the suggestions list is empty.

## Blocked
- None yet.
- Protractor `e2e/client/specs/notifications_spec.ts` — create a user mention and verify the mentioned user's unread badge clears after sign-in — current `main` snapshot no longer accepts the legacy `admin1` / `admin` credentials used by the spec, so migrating this scenario needs a maintained secondary-user test fixture or snapshot update.

## Obsolete
- None yet.
Expand Down
4 changes: 3 additions & 1 deletion e2e/client/playwright/vocabularies.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@ test('can restore vocabulary data when editing is cancelled', async ({page}) =>
await expect(page.locator(s('vocabulary-edit-field--name'))).toHaveValue(updatedName);

await page.locator(s('vocabulary-edit-modal--cancel')).click();
await expect(page.locator(originalVocabularyItemSelector).locator(s('vocabulary-item--name'))).toHaveText(originalName);
await expect(
page.locator(originalVocabularyItemSelector).locator(s('vocabulary-item--name')),
).toHaveText(originalName);
});