mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
24023dd267
Design system updates test tear down and clean up GitOrigin-RevId: 743423f7c31c0ba89093bba0107d7e6799e1c309
15 lines
374 B
TypeScript
15 lines
374 B
TypeScript
import 'cypress-plugin-tab'
|
|
import '../../frontend/stylesheets/main-style.less'
|
|
import './ct/window' // needs to be before i18n
|
|
import '../../frontend/js/i18n'
|
|
import './shared/commands'
|
|
import './shared/exceptions'
|
|
import './ct/commands'
|
|
|
|
beforeEach(function () {
|
|
window.metaAttributesCache = new Map()
|
|
})
|
|
|
|
afterEach(function () {
|
|
window.metaAttributesCache.clear()
|
|
})
|