• The cacheTestSuite function simplifies the process of testing your custom implementation of ICache with vitest.

    IMPORT_PATH: "@daiso-tech/core/cache/test-utilities"

    Parameters

    Returns void

    import { beforeEach, describe, expect, test } from "vitest";
    import { cacheTestSuite } from "@daiso-tech/core/cache/test-utilities";
    import { MemoryCacheAdapter } from "@daiso-tech/core/cache/adapters";
    import { Cache } from "@daiso-tech/core/cache";
    import { KeyPrefixer } from "@daiso-tech/core/utilities";

    describe("class: Cache", () => {
    cacheTestSuite({
    createCache: () =>
    new Cache({
    keyPrefixer: new KeyPrefixer("cache"),
    adapter: new MemoryCacheAdapter(),
    }),
    test,
    beforeEach,
    expect,
    describe,
    });
    });