mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
7c97f8ab6e
* Use new JSX runtime and update Babel Node target * Update .eslintrc * Remove React imports GitOrigin-RevId: 559de0267f8f2934c56a860ea8701bb522aa861a
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
import sinon from 'sinon'
|
|
import { expect } from 'chai'
|
|
import { screen, fireEvent } from '@testing-library/react'
|
|
import renderWithContext from '../../helpers/render-with-context'
|
|
|
|
import FileTreeitemMenu from '../../../../../../frontend/js/features/file-tree/components/file-tree-item/file-tree-item-menu'
|
|
|
|
describe('<FileTreeitemMenu />', function () {
|
|
const setContextMenuCoords = sinon.stub()
|
|
|
|
afterEach(function () {
|
|
setContextMenuCoords.reset()
|
|
})
|
|
|
|
it('renders dropdown', function () {
|
|
renderWithContext(
|
|
<FileTreeitemMenu
|
|
id="123abc"
|
|
setContextMenuCoords={setContextMenuCoords}
|
|
/>
|
|
)
|
|
|
|
const toggleButton = screen.getByRole('button', { name: 'Menu' })
|
|
fireEvent.click(toggleButton)
|
|
|
|
screen.getByRole('menu')
|
|
})
|
|
|
|
it('open / close', function () {
|
|
renderWithContext(
|
|
<FileTreeitemMenu
|
|
id="123abc"
|
|
setContextMenuCoords={setContextMenuCoords}
|
|
/>
|
|
)
|
|
|
|
expect(screen.queryByRole('menu')).to.be.null
|
|
|
|
const toggleButton = screen.getByRole('button', { name: 'Menu' })
|
|
|
|
fireEvent.click(toggleButton)
|
|
screen.getByRole('menu', { visible: true })
|
|
|
|
fireEvent.click(toggleButton)
|
|
screen.getByRole('menu', { visible: false })
|
|
})
|
|
})
|