mirror of
https://github.com/unjs/unstorage.git
synced 2026-04-17 03:00:46 -04:00
13 lines
343 B
TypeScript
13 lines
343 B
TypeScript
import { describe } from "vitest";
|
|
import denoKvNodeDriver from "../../src/drivers/deno-kv-node.ts";
|
|
import { testDriver } from "./utils.ts";
|
|
|
|
describe("drivers: deno-kv-node", async () => {
|
|
testDriver({
|
|
driver: denoKvNodeDriver({
|
|
path: ":memory:",
|
|
base: Math.round(Math.random() * 1_000_000).toString(16),
|
|
}),
|
|
});
|
|
});
|