mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-26 18:51:50 +02:00
[web] Enable Cypress test for creating new subscription GitOrigin-RevId: c17efbeb6a29d8e757729cddffef46faf054da70
13 lines
332 B
JavaScript
13 lines
332 B
JavaScript
// window location-related functions in a separate module so they can be mocked/stubbed in tests
|
|
|
|
export const location = {
|
|
assign(url) {
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
window.location.assign(url)
|
|
},
|
|
reload() {
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
window.location.reload()
|
|
},
|
|
}
|