mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
5e9af2c15c
GitOrigin-RevId: f373f4215e5f25d14256008cf5f6582eb3124431
74 lines
1.7 KiB
TypeScript
74 lines
1.7 KiB
TypeScript
import { mount, unmount } from '@cypress/react'
|
|
import { EditorProviders } from '../../helpers/editor-providers'
|
|
import PdfJsViewer from '../../../../frontend/js/features/pdf-preview/components/pdf-js-viewer'
|
|
import { mockScope } from './scope'
|
|
|
|
describe('<PdfJSViewer/>', function () {
|
|
beforeEach(function () {
|
|
cy.interceptCompile()
|
|
cy.interceptEvents()
|
|
})
|
|
|
|
it('loads all PDF pages', function () {
|
|
const scope = mockScope()
|
|
|
|
mount(
|
|
<EditorProviders scope={scope}>
|
|
<div className="pdf-viewer">
|
|
<PdfJsViewer url="/build/123/output.pdf" />
|
|
</div>
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.findByLabelText('Page 1')
|
|
cy.findByLabelText('Page 2')
|
|
cy.findByLabelText('Page 3')
|
|
cy.findByLabelText('Page 4').should('not.exist')
|
|
|
|
cy.contains('Your Paper')
|
|
})
|
|
|
|
it('renders pages in a "loading" state', function () {
|
|
const scope = mockScope()
|
|
|
|
mount(
|
|
<EditorProviders scope={scope}>
|
|
<div className="pdf-viewer">
|
|
<PdfJsViewer url="/build/123/output.pdf" />
|
|
</div>
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.findByLabelText('Loading…')
|
|
})
|
|
|
|
it('can be unmounted while loading a document', function () {
|
|
const scope = mockScope()
|
|
|
|
mount(
|
|
<EditorProviders scope={scope}>
|
|
<div className="pdf-viewer">
|
|
<PdfJsViewer url="/build/123/output.pdf" />
|
|
</div>
|
|
</EditorProviders>
|
|
)
|
|
|
|
unmount()
|
|
})
|
|
|
|
it('can be unmounted after loading a document', function () {
|
|
const scope = mockScope()
|
|
|
|
mount(
|
|
<EditorProviders scope={scope}>
|
|
<div className="pdf-viewer">
|
|
<PdfJsViewer url="/build/123/output.pdf" />
|
|
</div>
|
|
</EditorProviders>
|
|
)
|
|
|
|
cy.findByLabelText('Page 1')
|
|
|
|
unmount()
|
|
})
|
|
})
|