mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
577497b655
[misc] add readonly mirror of full project content on the client GitOrigin-RevId: 940bd93bfd587f83ca383d10fc44579b38fc3e88
23 lines
665 B
JavaScript
23 lines
665 B
JavaScript
import { screen } from '@testing-library/react'
|
|
|
|
import { renderWithEditorContext } from '../../../helpers/render-with-context'
|
|
import FileViewImage from '../../../../../frontend/js/features/file-view/components/file-view-image'
|
|
|
|
describe('<FileViewImage />', function () {
|
|
const file = {
|
|
id: '60097ca20454610027c442a8',
|
|
name: 'file.jpg',
|
|
hash: 'hash',
|
|
linkedFileData: {
|
|
source_entity_path: '/source-entity-path',
|
|
provider: 'project_file',
|
|
},
|
|
}
|
|
|
|
it('renders an image', function () {
|
|
renderWithEditorContext(
|
|
<FileViewImage file={file} onError={() => {}} onLoad={() => {}} />
|
|
)
|
|
screen.getByRole('img')
|
|
})
|
|
})
|