const mockElement = { outerHTML: '
mock content
', textContent: "mock content", }; export class JSDOM { constructor( public html: string, public options?: Record, ) {} get window() { return { document: { querySelector: () => mockElement, }, }; } }