2025-04-24 13:11:28 +08:00

13 lines
355 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 './ct/codemirror'
import '../../test/frontend/helpers/bootstrap-5'
beforeEach(function () {
cy.wrap(localesPromise).then(resetMeta)
})