import { screen, render } from '@testing-library/react'
import { expect } from 'chai'
import fetchMock from 'fetch-mock'
import { SettingsModalProvider } from '@/features/settings/context/settings-modal-context'
import {
EditorProviders,
projectDefaults,
} from '../../../helpers/editor-providers'
import AutoCompileSetting from '@/features/settings/components/compiler-settings/auto-compile-setting'
import localStorage from '@/infrastructure/local-storage'
import userEvent from '@testing-library/user-event'
describe('', function () {
afterEach(function () {
fetchMock.removeRoutes().clearHistory()
})
it('can toggle', async function () {
render(
)
const toggle = screen.getByLabelText('Autocompile')
const startingCheckedValue = (toggle as HTMLInputElement).checked
// Toggle the checkbox
await userEvent.click(toggle)
expect((toggle as HTMLInputElement).checked).to.equal(!startingCheckedValue)
expect(
localStorage.getItem(`autocompile_enabled:${projectDefaults._id}`)
).to.equal(!startingCheckedValue)
// Toggle back to original value
await userEvent.click(toggle)
expect((toggle as HTMLInputElement).checked).to.equal(startingCheckedValue)
expect(
!!localStorage.getItem(`autocompile_enabled:${projectDefaults._id}`)
).to.equal(startingCheckedValue)
})
})