2023-03-15 09:42:01 +00:00
|
|
|
import 'cypress-plugin-tab'
|
2023-11-27 10:02:32 +00:00
|
|
|
import '../../frontend/stylesheets/main-style.less'
|
2022-06-08 07:39:09 +00: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 08:12:03 +00:00
|
|
|
|
|
|
|
beforeEach(function () {
|
2024-01-18 12:54:24 +00:00
|
|
|
cy.window().then(win => {
|
|
|
|
win.metaAttributesCache = new Map()
|
|
|
|
})
|
2023-07-04 08:12:03 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function () {
|
2024-01-18 12:54:24 +00:00
|
|
|
cy.window().then(win => {
|
|
|
|
win.metaAttributesCache?.clear()
|
|
|
|
})
|
2023-07-04 08:12:03 +00:00
|
|
|
})
|