mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
9daa8f5d98
[web] rename all the JSX files to .jsx/.tsx GitOrigin-RevId: 82056ae47e017523722cf258dcc83c8a925a28f7
27 lines
711 B
JavaScript
27 lines
711 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',
|
|
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')
|
|
})
|
|
})
|