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