mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 11:01:56 +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
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
import { screen } from '@testing-library/react'
|
|
import { expect } from 'chai'
|
|
import fetchMock from 'fetch-mock'
|
|
import HelpMenu from '../../../../../frontend/js/features/editor-left-menu/components/help-menu'
|
|
import { renderWithEditorContext } from '../../../helpers/render-with-context'
|
|
|
|
describe('<HelpMenu />', function () {
|
|
beforeEach(function () {
|
|
window.metaAttributesCache.set('ol-user', {
|
|
email: 'sherlock@holmes.co.uk',
|
|
first_name: 'Sherlock',
|
|
last_name: 'Holmes',
|
|
})
|
|
})
|
|
|
|
afterEach(function () {
|
|
fetchMock.removeRoutes().clearHistory()
|
|
})
|
|
|
|
it('shows correct menu if `showSupport` is `true`', function () {
|
|
window.metaAttributesCache.set('ol-showSupport', true)
|
|
|
|
renderWithEditorContext(<HelpMenu />)
|
|
|
|
screen.getByRole('button', { name: 'Show Hotkeys' })
|
|
screen.getByRole('button', { name: 'Contact Us' })
|
|
screen.getByRole('link', { name: 'Documentation' })
|
|
})
|
|
|
|
it('shows correct menu if `showSupport` is `false`', function () {
|
|
window.metaAttributesCache.set('ol-showSupport', false)
|
|
|
|
renderWithEditorContext(<HelpMenu />)
|
|
|
|
screen.getByRole('button', { name: 'Show Hotkeys' })
|
|
expect(screen.queryByRole('button', { name: 'Contact Us' })).to.equal(null)
|
|
expect(screen.queryByRole('link', { name: 'Documentation' })).to.equal(null)
|
|
})
|
|
})
|