diff --git a/CHANGELOG.md b/CHANGELOG.md index eff079915..a83deb66c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ## Review Console +- Fixed hovering a blurred video not lifting blur the way images already do; the player now unblurs on hover without requiring play (#524) - Fixed a "Job submission failed" error that prevented reviewers from clearing jobs whose item had an unparseable `Created At` value; the decision now records instead of failing (#913) - Fixed a "Something Went Wrong" page when opening a job or queue whose `Created At` value was unparseable; the affected date now shows `Unknown` instead of blanking the view (#916) - Fixed "Oldest Task Age" on the MRT queues dashboard showing the newest job's age instead of the oldest (#909) diff --git a/client/src/webpages/dashboard/mrt/manual_review_job/ManualReviewJobContentBlurableVideo.test.tsx b/client/src/webpages/dashboard/mrt/manual_review_job/ManualReviewJobContentBlurableVideo.test.tsx new file mode 100644 index 000000000..378049dac --- /dev/null +++ b/client/src/webpages/dashboard/mrt/manual_review_job/ManualReviewJobContentBlurableVideo.test.tsx @@ -0,0 +1,31 @@ +import { render } from '@testing-library/react'; +import React from 'react'; + +import '@testing-library/jest-dom/extend-expect'; + +import ManualReviewJobContentBlurableVideo from '@/webpages/dashboard/mrt/manual_review_job/ManualReviewJobContentBlurableVideo'; + +vi.mock('react-player', () => ({ + default: function MockPlayer() { + return
; + }, +})); + +describe('ManualReviewJobContentBlurableVideo hover unblur', () => { + it('keeps play-to-unblur and adds group-hover unblur on a blurred video', () => { + const { container } = render( +