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,
});
});
The
cacheTestSuite
function simplifies the process of testing your custom implementation ofICache
withvitest
.IMPORT_PATH:
"@daiso-tech/core/cache/test-utilities"