mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
6dcc22642a
* Update "go to line" hotkey for cm6 and add new info text in hotkeys modal * Differentiate modal title between cm6 and ace hotkeys * Update test to reflect change in hotkeys modal title * Add test for hotkeys modal bottom text * Update test on editor left menu hotkeys button to reflect change in hotkeys modal title GitOrigin-RevId: 61bae16313ea7a37fa3b9441dbe5a93ab7823d01
21 lines
817 B
JavaScript
21 lines
817 B
JavaScript
import { expect } from 'chai'
|
|
import { screen, fireEvent, within } from '@testing-library/react'
|
|
import HelpShowHotkeys from '../../../../../frontend/js/features/editor-left-menu/components/help-show-hotkeys'
|
|
import { renderWithEditorContext } from '../../../helpers/render-with-context'
|
|
import fetchMock from 'fetch-mock'
|
|
|
|
describe('<HelpShowHotkeys />', function () {
|
|
afterEach(function () {
|
|
fetchMock.reset()
|
|
})
|
|
|
|
it('open hotkeys modal when clicked', function () {
|
|
renderWithEditorContext(<HelpShowHotkeys />)
|
|
|
|
expect(screen.queryByRole('dialog')).to.equal(null)
|
|
fireEvent.click(screen.getByRole('button', { name: 'Show Hotkeys' }))
|
|
const modal = screen.getAllByRole('dialog')[0]
|
|
within(modal).getByText('Hotkeys (Legacy source editor)')
|
|
within(modal).getByText('Common')
|
|
})
|
|
})
|