Type Alias EventBusTestSuiteSettings

EventBusTestSuiteSettings: {
    beforeEach: typeof beforeEach;
    createEventBusA: (() => Promisable<IEventBus>);
    createEventBusB: (() => Promisable<IEventBus>);
    describe: SuiteAPI;
    expect: ExpectStatic;
    serde?: IFlexibleSerde;
    test: TestAPI;
}