(url: string)
| 24 | } from '@/lib/core/utils/urls' |
| 25 | |
| 26 | function setLocation(url: string) { |
| 27 | Object.defineProperty(window, 'location', { |
| 28 | value: new URL(url), |
| 29 | writable: true, |
| 30 | configurable: true, |
| 31 | }) |
| 32 | } |
| 33 | |
| 34 | describe('getBrowserOrigin', () => { |
| 35 | it('returns the page origin in the browser', () => { |