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