mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
4556675ad2
Move mendeley/zotero file-view UI to `tpr-webmodule` folder GitOrigin-RevId: af3cfe614fcf415d5842cf98dc2a42a3898ccd8b
30 lines
879 B
TypeScript
30 lines
879 B
TypeScript
import { render, screen } from '@testing-library/react'
|
|
import FileViewRefreshError from '@/features/file-view/components/file-view-refresh-error'
|
|
import type { BinaryFile } from '@/features/file-view/types/binary-file'
|
|
|
|
describe('<FileViewRefreshError />', function () {
|
|
it('shows correct error message', function () {
|
|
const anotherProjectFile: BinaryFile<'project_file'> = {
|
|
id: '123abc',
|
|
_id: '123abc',
|
|
linkedFileData: {
|
|
provider: 'project_file',
|
|
source_project_id: 'some-id',
|
|
source_entity_path: '/path/',
|
|
},
|
|
created: new Date(2023, 1, 17, 3, 24),
|
|
name: 'frog.jpg',
|
|
type: 'file',
|
|
selected: true,
|
|
}
|
|
|
|
render(
|
|
<FileViewRefreshError
|
|
file={anotherProjectFile}
|
|
refreshError="An error message"
|
|
/>
|
|
)
|
|
|
|
screen.getByText('Access Denied: An error message')
|
|
})
|
|
})
|