mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
|
import Tooltip from '../../../../frontend/js/shared/components/tooltip'
|
||
|
|
||
|
describe('<Tooltip />', function () {
|
||
|
it('calls the bound handler and blur then hides text on click', function () {
|
||
|
const clickHandler = cy.stub().as('clickHandler')
|
||
|
const blurHandler = cy.stub().as('blurHandler')
|
||
|
const description = 'foo'
|
||
|
const btnText = 'Click me!'
|
||
|
|
||
|
cy.mount(
|
||
|
<div
|
||
|
style={{
|
||
|
display: 'flex',
|
||
|
alignItems: 'center',
|
||
|
justifyContent: 'center',
|
||
|
height: '100vh',
|
||
|
}}
|
||
|
>
|
||
|
<Tooltip id="abc" description={description}>
|
||
|
<button onClick={clickHandler} onBlur={blurHandler}>
|
||
|
{btnText}
|
||
|
</button>
|
||
|
</Tooltip>
|
||
|
</div>
|
||
|
)
|
||
|
|
||
|
cy.findByRole('button', { name: btnText }).as('button')
|
||
|
cy.get('@button').trigger('mouseover')
|
||
|
cy.findByText(description)
|
||
|
cy.get('@button').click()
|
||
|
cy.get('@clickHandler').should('have.been.calledOnce')
|
||
|
cy.get('@blurHandler').should('have.been.calledOnce')
|
||
|
cy.findByText(description).should('not.exist')
|
||
|
})
|
||
|
})
|