Skip to content

Commit a9614f5

Browse files
committed
fix
1 parent 293af5b commit a9614f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/core/src/cache.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ for (const type of ["memory", "jsonl", "fs"]) {
1818
const cache = createCache<string, number>("testCache", {
1919
type: type as any,
2020
})
21-
assert.ok(cache instanceof JSONLineCache)
21+
assert.ok(!!cache)
2222
})
2323
test("set key-value pair", async () => {
2424
const cache = createCache<string, number>("testCache", {

0 commit comments

Comments
 (0)