Files
overleaf-cep/services/web/cypress/support/component.ts
Alf Eaton 1d3d81e67d Allow enabling EditContext in CodeMirror (#29114)
GitOrigin-RevId: 15d70fd2d5da68d43f441bb0c65ff0cd2d785306
2025-11-04 09:06:01 +00:00

12 lines
328 B
TypeScript

import 'cypress-plugin-tab'
import { resetMeta } from './ct/window' // needs to be before i18n
import localesPromise from '@/i18n'
import './shared/commands'
import './shared/exceptions'
import './ct/commands'
import '../../test/frontend/helpers/bootstrap'
beforeEach(function () {
cy.wrap(localesPromise).then(resetMeta)
})