Skip to content

Commit

Permalink
fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ardabeyazoglu committed Dec 7, 2024
1 parent 400206b commit 1588f02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export class RedisConnection implements Connection {
return this.#protocol.readReply(returnsUint8Arrays);
}

[kUnstablePipeline](commands: Array<Command>) {
[kUnstablePipeline](commands: Array<Command>): Promise<RedisReply[]> {
const { promise, resolve, reject } = Promise.withResolvers<
RedisReply[]
>();
Expand Down
6 changes: 3 additions & 3 deletions tests/commands_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ describe("commands", () => {
]
) {
describe(kind, () => {
//describe("acl", () => aclTests(connector, getServer));
describe("acl", () => aclTests(connector, getServer));
describe("connection", () => connectionTests(connector, getServer));
/*describe("general", () => generalTests(connector, getServer));
describe("general", () => generalTests(connector, getServer));
describe("geo", () => geoTests(connector, getServer));
describe("hash", () => hashTests(connector, getServer));
describe("hyperloglog", () => hyperloglogTests(connector, getServer));
Expand All @@ -55,7 +55,7 @@ describe("commands", () => {
describe("zset", () => zsetTests(connector, getServer));
describe("script", () => scriptTests(connector, getServer));
describe("stream", () => streamTests(connector, getServer));
describe("string", () => stringTests(connector, getServer));*/
describe("string", () => stringTests(connector, getServer));
});
}
});

0 comments on commit 1588f02

Please sign in to comment.