mirror of
https://github.com/unjs/unstorage.git
synced 2026-01-14 14:48:13 -05:00
10 lines
204 B
TypeScript
10 lines
204 B
TypeScript
import { describe } from "vitest";
|
|
import driver from "../../src/drivers/memory";
|
|
import { testDriver } from "./utils";
|
|
|
|
describe("drivers: memory", () => {
|
|
testDriver({
|
|
driver: driver(),
|
|
});
|
|
});
|