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
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
import { screen } from '@testing-library/react'
|
|
import fetchMock from 'fetch-mock'
|
|
|
|
import { renderWithEditorContext } from '../../../helpers/render-with-context'
|
|
import FileViewText from '../../../../../frontend/js/features/file-view/components/file-view-text.js'
|
|
|
|
describe('<FileViewText/>', function () {
|
|
const file = {
|
|
name: 'example.tex',
|
|
linkedFileData: {
|
|
v1_source_doc_id: 'v1-source-id',
|
|
source_project_id: 'source-project-id',
|
|
source_entity_path: '/source-entity-path.ext',
|
|
provider: 'project_file',
|
|
},
|
|
created: new Date(2021, 1, 17, 3, 24).toISOString(),
|
|
}
|
|
|
|
beforeEach(function () {
|
|
fetchMock.reset()
|
|
})
|
|
|
|
it('renders a text view', async function () {
|
|
fetchMock.head('express:/project/:project_id/file/:file_id', {
|
|
status: 201,
|
|
headers: { 'Content-Length': 10000 },
|
|
})
|
|
fetchMock.get(
|
|
'express:/project/:project_id/file/:file_id',
|
|
'Text file content'
|
|
)
|
|
|
|
renderWithEditorContext(
|
|
<FileViewText file={file} onError={() => {}} onLoad={() => {}} />
|
|
)
|
|
|
|
await screen.findByText('Text file content', { exact: false })
|
|
})
|
|
})
|