mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
cf2dfc6bf1
[SettingsPage] Integration Branch GitOrigin-RevId: 5a3c26b2a02d716c4ae3981e3f08b811ae307725
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import { expect } from 'chai'
|
|
import { screen, render } from '@testing-library/react'
|
|
import fetchMock from 'fetch-mock'
|
|
|
|
import LeaveModalContent from '../../../../../../frontend/js/features/settings/components/leave/modal-content'
|
|
|
|
describe('<LeaveModalContent />', function () {
|
|
beforeEach(function () {
|
|
window.metaAttributesCache = new Map()
|
|
window.metaAttributesCache.set('ol-ExposedSettings', { isOverleaf: true })
|
|
window.metaAttributesCache.set('ol-hasPassword', true)
|
|
})
|
|
|
|
afterEach(function () {
|
|
window.metaAttributesCache = new Map()
|
|
fetchMock.reset()
|
|
})
|
|
|
|
it('disable delete button if form is not valid', function () {
|
|
render(
|
|
<LeaveModalContent
|
|
handleHide={() => {}}
|
|
inFlight={false}
|
|
setInFlight={() => {}}
|
|
/>
|
|
)
|
|
screen.getByLabelText('Email')
|
|
|
|
const deleteButton = screen.getByRole('button', {
|
|
name: 'Delete',
|
|
})
|
|
expect(deleteButton.hasAttribute('disabled')).to.be.true
|
|
})
|
|
|
|
it('shows no password message', function () {
|
|
window.metaAttributesCache.set('ol-isSaas', true)
|
|
window.metaAttributesCache.set('ol-hasPassword', false)
|
|
render(
|
|
<LeaveModalContent
|
|
handleHide={() => {}}
|
|
inFlight={false}
|
|
setInFlight={() => {}}
|
|
/>
|
|
)
|
|
|
|
const link = screen.getByRole('link', {
|
|
name: 'Please use the password reset form to set a password before deleting your account',
|
|
})
|
|
expect(link.getAttribute('href')).to.equal('/user/password/reset')
|
|
})
|
|
})
|