interface IMiniAppViewCallbackMock { name: string; type: string; id: string; } export class MiniAppView { key: string; url: string; id?: string; callbacks: IMiniAppViewCallbackMock[]; constructor(url: string) { this.url = url; this.callbacks = []; this.key = Math.random().toString(36).substring(5) + '-' + Date.now(); } handleEvent(event: string, type: string) { jest.fn(); } } test.skip('skip', () => {});