mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
* feat: integrate main layout, toolbar, and rail from redesign into main ide-react folder * feat: remove additional files no longer used after ide redesign GitOrigin-RevId: 8fd77f63cb9c67be91995a9dde13b0fe2376d80f
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import { fireEvent, screen, within, render } from '@testing-library/react'
|
|
import { expect } from 'chai'
|
|
import { SettingsModalProvider } from '@/features/ide-redesign/contexts/settings-modal-context'
|
|
import { EditorProviders } from '../../../helpers/editor-providers'
|
|
import DictionarySetting from '@/features/ide-redesign/components/settings/editor-settings/dictionary-setting'
|
|
import RailModals from '@/features/ide-react/components/rail/rail-modals'
|
|
|
|
describe('<DictionarySetting />', function () {
|
|
it('open dictionary modal', function () {
|
|
render(
|
|
<EditorProviders>
|
|
<SettingsModalProvider>
|
|
<DictionarySetting />
|
|
<RailModals />
|
|
</SettingsModalProvider>
|
|
</EditorProviders>
|
|
)
|
|
|
|
screen.getByText('Dictionary')
|
|
|
|
const button = screen.getByText('Edit')
|
|
fireEvent.click(button)
|
|
|
|
const modal = screen.getByTestId('dictionary-modal')
|
|
|
|
within(modal).getByRole('heading', { name: 'Edit Dictionary' })
|
|
within(modal).getByText('Your custom dictionary is empty.')
|
|
|
|
const closeButton = within(modal).getByRole('button', {
|
|
name: 'Close dialog',
|
|
})
|
|
fireEvent.click(closeButton)
|
|
expect(screen.getByTestId('dictionary-modal')).to.not.be.null
|
|
})
|
|
})
|