Type Alias CacheTestSuiteSettings

CacheTestSuiteSettings: {
    beforeEach: typeof beforeEach;
    createCacheA: (() => Promisable<ICache>);
    createCacheB: (() => Promisable<ICache>);
    describe: SuiteAPI;
    expect: ExpectStatic;
    test: TestAPI;
}