mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
7c97f8ab6e
* Use new JSX runtime and update Babel Node target * Update .eslintrc * Remove React imports GitOrigin-RevId: 559de0267f8f2934c56a860ea8701bb522aa861a
27 lines
714 B
JavaScript
27 lines
714 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.js'
|
|
|
|
describe('<FileViewImage />', function () {
|
|
const file = {
|
|
id: '60097ca20454610027c442a8',
|
|
name: 'file.jpg',
|
|
linkedFileData: {
|
|
source_entity_path: '/source-entity-path',
|
|
provider: 'project_file',
|
|
},
|
|
}
|
|
|
|
it('renders an image', function () {
|
|
renderWithEditorContext(
|
|
<FileViewImage
|
|
fileName={file.name}
|
|
fileId={file.id}
|
|
onError={() => {}}
|
|
onLoad={() => {}}
|
|
/>
|
|
)
|
|
screen.getByRole('img')
|
|
})
|
|
})
|