Type Alias CacheAdapterTestSuiteSettings

CacheAdapterTestSuiteSettings: {
    beforeEach: typeof beforeEach;
    createAdapterA: (() => Promisable<ICacheAdapter>);
    createAdapterB: (() => Promisable<ICacheAdapter>);
    describe: SuiteAPI;
    expect: ExpectStatic;
    test: TestAPI;
}