mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 23:00:08 +02:00

* Update fetch-mock to version 12 * Replace `fetchMock.done` by `fetchMock.callHistory.done` * Replace `…Mock.called` by `…Mock.callHistory.called` * Replace `fetchMock.reset` by `fetchMock.hardReset` * Replace `fetchMock.restore` by `fetchMock.hardReset` * Replace `fetchMock.resetHistory` by `fetchMock.clearHistory` * Replace `fetchMock.calls` by `fetchMock.callHistory.calls` * Replace `fetchMock.flush` by `fetchMock.callHistory.flush` * Update tests for fetch-mock version 12 See https://www.wheresrhys.co.uk/fetch-mock/docs/Usage/upgrade-guide * Update stories for fetch-mock version 12 * Remove `overwriteRoutes` option * Add `fetchMock.spyGlobal()` to storybook * Remove deprecated `sendAsJson` param * Replace `fetchMock.hardReset()` by `fetchMock.removeRoutes().clearHistory()` * Fixup fetch-mock in storybook: Call `mockGlobal` inside the hook, call `removeRoutes` and `unmockGlobal` on cleanup Behaviour can be tested by navigating between https://storybook.dev-overleaf.com/main/?path=/story/editor-ai-error-assistant-compile-log-entries--first-log-entry https://storybook.dev-overleaf.com/main/?path=/story/editor-ai-error-assistant-compile-log-entries--rate-limited https://storybook.dev-overleaf.com/main/?path=/story/project-list-notifications--project-invite https://storybook.dev-overleaf.com/main/?path=/story/project-list-notifications--project-invite-network-error And clicking the buttons GitOrigin-RevId: 35611b4430259e4c21c3d819ad18b2e6dab66242
50 lines
1.4 KiB
TypeScript
50 lines
1.4 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'
|
|
import getMeta from '@/utils/meta'
|
|
|
|
describe('<LeaveModalContent />', function () {
|
|
beforeEach(function () {
|
|
Object.assign(getMeta('ol-ExposedSettings'), { isOverleaf: true })
|
|
window.metaAttributesCache.set('ol-hasPassword', true)
|
|
})
|
|
|
|
afterEach(function () {
|
|
fetchMock.removeRoutes().clearHistory()
|
|
})
|
|
|
|
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')
|
|
})
|
|
})
|