We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ba0881 commit 0a99cefCopy full SHA for 0a99cef
test/functional/exports.ts
@@ -1,4 +1,4 @@
1
-import { Command, Cluster, ReplyError } from "../../lib";
+import { Command, Cluster, ReplyError, Valkey } from "../../lib";
2
import { expect } from "chai";
3
4
describe("exports", () => {
@@ -19,4 +19,10 @@ describe("exports", () => {
19
expect(ReplyError).to.eql(require("redis-errors").ReplyError);
20
});
21
22
+
23
+ describe(".Valkey", () => {
24
+ it("should be `Valkey`", () => {
25
+ expect(Valkey).to.eql(require("../../lib").default);
26
+ });
27
28
0 commit comments