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
53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
import {
|
|
screen,
|
|
fireEvent,
|
|
waitForElementToBeRemoved,
|
|
} from '@testing-library/react'
|
|
import fetchMock from 'fetch-mock'
|
|
import sinon from 'sinon'
|
|
import FileViewRefreshButton from '@/features/file-view/components/file-view-refresh-button'
|
|
import { renderWithEditorContext } from '../../../helpers/render-with-context'
|
|
import { USER_ID } from '../../../helpers/editor-providers'
|
|
|
|
describe('<FileViewRefreshButton />', function () {
|
|
const projectFile = {
|
|
name: 'example.tex',
|
|
linkedFileData: {
|
|
v1_source_doc_id: 'v1-source-id',
|
|
source_project_id: 'source-project-id',
|
|
source_entity_path: '/source-entity-path.ext',
|
|
provider: 'project_file',
|
|
importer_id: USER_ID,
|
|
},
|
|
created: new Date(2021, 1, 17, 3, 24).toISOString(),
|
|
}
|
|
|
|
beforeEach(function () {
|
|
fetchMock.removeRoutes().clearHistory()
|
|
})
|
|
|
|
// eslint-disable-next-line mocha/no-skipped-tests
|
|
it.skip('Changes text when the file is refreshing', async function () {
|
|
fetchMock.post(
|
|
'express:/project/:project_id/linked_file/:file_id/refresh',
|
|
{
|
|
new_file_id: '5ff7418157b4e144321df5c4',
|
|
}
|
|
)
|
|
|
|
renderWithEditorContext(
|
|
<FileViewRefreshButton
|
|
file={projectFile}
|
|
setRefreshError={sinon.stub()}
|
|
/>
|
|
)
|
|
|
|
fireEvent.click(screen.getByRole('button', { name: 'Refresh' }))
|
|
|
|
await waitForElementToBeRemoved(() =>
|
|
screen.getByText('Refreshing', { exact: false })
|
|
)
|
|
|
|
await screen.findByRole('button', { name: 'Refresh' })
|
|
})
|
|
})
|