/*global jest*/ import { ConnectIframe, ConnectIframeDefinitions } from '../ConnectIframe'; export class MockConnectIframe extends ConnectIframe { constructor(props:ConnectIframeDefinitions.Props) { super(props); this.setState = jest.fn(); } iframeEstablishedCallback = jest.fn(); }