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 592e3eb commit 629b26eCopy full SHA for 629b26e
test/index.js
@@ -15,6 +15,10 @@ describe('redis-commands', function () {
15
});
16
17
18
+ it('should ensure quit command is added to the commands list', function () {
19
+ expect(commands.list.indexOf('quit')).not.to.eql(-1);
20
+ });
21
+
22
it('should not contain multi-word commands', function () {
23
commands.list.forEach(function (command) {
24
expect(command.indexOf(' ')).to.eql(-1);
0 commit comments