@hmcts/media-viewer 4.2.28 → 4.2.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/README.md CHANGED
@@ -132,7 +132,7 @@ Current Playwright lanes:
132
132
  | Lane | Config/project | Command | Scope |
133
133
  | --- | --- | --- | --- |
134
134
  | Standalone smoke | `playwright.config.ts`, project `smoke` | `yarn test:playwright:smoke` or `yarn test:smoke` | One readiness contract: loads a standalone PDF and proves the rendered viewer, first page and canvas are usable. |
135
- | Migrated functional | `playwright.config.ts`, project `functional` | `yarn test:playwright:functional` | 20 behaviour tests across the explicit `zoom`, `navigation`, `rotation`, `search` and `bookmarks` feature files; one bookmarks reorder test is intentionally skipped pending [EXUI-5097](https://tools.hmcts.net/jira/browse/EXUI-5097). See [`playwright_tests/functional/README.md`](playwright_tests/functional/README.md). |
135
+ | Migrated functional | `playwright.config.ts`, project `functional` | `yarn test:playwright:functional` | 32 behaviour tests across the explicit `zoom`, `navigation`, `rotation`, `search`, `comments` and `bookmarks` feature files; one bookmarks reorder test is intentionally skipped pending [EXUI-5097](https://tools.hmcts.net/jira/browse/EXUI-5097). See [`playwright_tests/functional/README.md`](playwright_tests/functional/README.md). |
136
136
  | Viewer support | `playwright.config.ts`, project `support` | `yarn test:playwright:support` | Proves the reusable PDF, image and unsupported-media fixtures, component objects and response diagnostics. |
137
137
 
138
138
  The current migration slice is deliberately separated from smoke: smoke proves
@@ -8911,7 +8911,7 @@ class AnnotationEffects {
8911
8911
  successAction.annotationId = action.payload.id;
8912
8912
  return successAction;
8913
8913
  }), catchError(error => {
8914
- return of(new LoadAnnotationSetFail(error));
8914
+ return of(new SaveAnnotationFail(error));
8915
8915
  }));
8916
8916
  })));
8917
8917
  this.deleteAnnotation$ = createEffect(() => this.actions$.pipe(ofType(DELETE_ANNOTATION), map((action) => action.payload), exhaustMap((annotation) => {