Skip to content

Commit 0a99cef

Browse files
add tests for Valkey export
Signed-off-by: rawpixel-vincent <[email protected]>
1 parent 9ba0881 commit 0a99cef

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

test/functional/exports.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Command, Cluster, ReplyError } from "../../lib";
1+
import { Command, Cluster, ReplyError, Valkey } from "../../lib";
22
import { expect } from "chai";
33

44
describe("exports", () => {
@@ -19,4 +19,10 @@ describe("exports", () => {
1919
expect(ReplyError).to.eql(require("redis-errors").ReplyError);
2020
});
2121
});
22+
23+
describe(".Valkey", () => {
24+
it("should be `Valkey`", () => {
25+
expect(Valkey).to.eql(require("../../lib").default);
26+
});
27+
});
2228
});

0 commit comments

Comments
 (0)