export interface IBaseIntegrationTester { given: (...props: any[]) => void; when: (...props: any[]) => Promise; then: (...props: any[]) => void; }