mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
e60885aa88
Move CSS loading in Cypress to individual test spec files GitOrigin-RevId: 92bb5167cfa81b0bd54acc724efb23b397421ccb
10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import 'cypress-plugin-tab'
|
|
import { resetMeta } from './ct/window' // needs to be before i18n
|
|
import '../../frontend/js/i18n'
|
|
import './shared/commands'
|
|
import './shared/exceptions'
|
|
import './ct/commands'
|
|
|
|
beforeEach(function () {
|
|
resetMeta()
|
|
})
|