import { JSDOM } from 'jsdom'; export const getGlobalWindow = (): Omit => { const { window } = new JSDOM(''); return window; };