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 8895aca commit ba6ecadCopy full SHA for ba6ecad
.github/workflows/tests.yaml
@@ -34,7 +34,7 @@ jobs:
34
run: bun run fmt
35
36
- name: Run tests
37
- run: bun test pkg --bail
+ run: bun test pkg --bail --timeout 20000
38
39
- name: Build
40
run: bun run build
pkg/redis.ts
@@ -641,7 +641,7 @@ export class Redis {
641
* @see https://redis.io/commands/hrandfield
642
*/
643
hrandfield: {
644
- (key: string): Promise<string>;
+ (key: string): Promise<string | null>;
645
(key: string, count: number): Promise<string[]>;
646
<TData extends Record<string, unknown>>(
647
key: string,
0 commit comments