mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-04 17:32:01 -05:00
612c7c28b0
Upgrade Uppy to v3 GitOrigin-RevId: ca3e366a20ac651a98aafe12bf319b1968ac6ec1
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
import FileTreeCreateNameInput from '../../../../../../frontend/js/features/file-tree/components/file-tree-create/file-tree-create-name-input'
|
|
import FileTreeCreateNameProvider from '../../../../../../frontend/js/features/file-tree/contexts/file-tree-create-name'
|
|
|
|
describe('<FileTreeCreateNameInput/>', function () {
|
|
it('renders an empty input', function () {
|
|
cy.mount(
|
|
<FileTreeCreateNameProvider>
|
|
<FileTreeCreateNameInput />
|
|
</FileTreeCreateNameProvider>
|
|
)
|
|
|
|
cy.findByLabelText('File Name')
|
|
cy.findByPlaceholderText('File Name')
|
|
})
|
|
|
|
it('renders a custom label and placeholder', function () {
|
|
cy.mount(
|
|
<FileTreeCreateNameProvider>
|
|
<FileTreeCreateNameInput
|
|
label="File name in this project"
|
|
placeholder="Enter a file name…"
|
|
/>
|
|
</FileTreeCreateNameProvider>
|
|
)
|
|
|
|
cy.findByLabelText('File name in this project')
|
|
cy.findByPlaceholderText('Enter a file name…')
|
|
})
|
|
|
|
it('uses an initial name', function () {
|
|
cy.mount(
|
|
<FileTreeCreateNameProvider initialName="test.tex">
|
|
<FileTreeCreateNameInput />
|
|
</FileTreeCreateNameProvider>
|
|
)
|
|
|
|
cy.findByLabelText('File Name').should('have.value', 'test.tex')
|
|
})
|
|
|
|
it('focuses the name', function () {
|
|
cy.spy(window, 'requestAnimationFrame').as('requestAnimationFrame')
|
|
|
|
cy.mount(
|
|
<FileTreeCreateNameProvider initialName="test.tex">
|
|
<FileTreeCreateNameInput focusName />
|
|
</FileTreeCreateNameProvider>
|
|
)
|
|
|
|
cy.findByLabelText('File Name').as('input')
|
|
|
|
cy.get('@input').should('have.value', 'test.tex')
|
|
|
|
cy.get('@requestAnimationFrame').should('have.been.calledOnce')
|
|
|
|
// https://github.com/jsdom/jsdom/issues/2995
|
|
// "window.getSelection doesn't work with selection of <input> element"
|
|
// const selection = window.getSelection().toString()
|
|
// expect(selection).to.equal('test')
|
|
|
|
// wait for the selection to update
|
|
// eslint-disable-next-line cypress/no-unnecessary-waiting
|
|
cy.wait(100)
|
|
|
|
cy.get<HTMLInputElement>('@input').then(element => {
|
|
expect(element.get(0).selectionStart).to.equal(0)
|
|
expect(element.get(0).selectionEnd).to.equal(4)
|
|
})
|
|
})
|
|
})
|