export class JSDOM { constructor(public html: string, public options?: any) {} get window() { return { document: {} }; } }