Skip to content

Commit 833416c

Browse files
committed
run COMMAND & COMMAND INFO tests only on redis >6
1 parent 6e7844e commit 833416c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

lib/commands/COMMAND.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ describe('COMMAND', () => {
2424
categories: new Set([CommandCategories.FAST, CommandCategories.CONNECTION])
2525
}
2626
);
27+
}, {
28+
minimumRedisVersion: [6]
2729
});
2830
});

lib/commands/COMMAND_INFO.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ describe('COMMAND INFO', () => {
2424
categories: new Set([CommandCategories.FAST, CommandCategories.CONNECTION])
2525
}]
2626
);
27+
}, {
28+
minimumRedisVersion: [6]
2729
});
2830
});

0 commit comments

Comments
 (0)