2023-03-15 05:42:01 -04:00
|
|
|
import 'cypress-plugin-tab'
|
2023-11-27 05:02:32 -05:00
|
|
|
import '../../frontend/stylesheets/main-style.less'
|
2022-06-08 03:39:09 -04:00
|
|
|
import './ct/window' // needs to be before i18n
|
|
|
|
import '../../frontend/js/i18n'
|
|
|
|
import './shared/commands'
|
|
|
|
import './shared/exceptions'
|
|
|
|
import './ct/commands'
|
2023-07-04 04:12:03 -04:00
|
|
|
|
|
|
|
beforeEach(function () {
|
2024-01-18 07:54:24 -05:00
|
|
|
cy.window().then(win => {
|
|
|
|
win.metaAttributesCache = new Map()
|
|
|
|
})
|
2023-07-04 04:12:03 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function () {
|
2024-01-18 07:54:24 -05:00
|
|
|
cy.window().then(win => {
|
|
|
|
win.metaAttributesCache?.clear()
|
|
|
|
})
|
2023-07-04 04:12:03 -04:00
|
|
|
})
|