| 123456789101112131415161718192021222324252627282930 |
- import { screen, within, render } from '@testing-library/react'
- import { expect } from 'chai'
- import fetchMock from 'fetch-mock'
- import SettingsSyntaxValidation from '../../../../../../frontend/js/features/editor-left-menu/components/settings/settings-syntax-validation'
- import { EditorProviders } from '../../../../helpers/editor-providers'
- import { EditorLeftMenuProvider } from '@/features/editor-left-menu/components/editor-left-menu-context'
- describe('<SettingsSyntaxValidation />', function () {
- afterEach(function () {
- fetchMock.reset()
- })
- it('shows correct menu', async function () {
- render(
- <EditorProviders>
- <EditorLeftMenuProvider>
- <SettingsSyntaxValidation />
- </EditorLeftMenuProvider>
- </EditorProviders>
- )
- const select = screen.getByLabelText('Code check')
- const optionOn = within(select).getByText('On')
- expect(optionOn.getAttribute('value')).to.equal('true')
- const optionOff = within(select).getByText('Off')
- expect(optionOff.getAttribute('value')).to.equal('false')
- })
- })
|