You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
feat(parser): update to latest Redis parser & errors (#1470)
* Update redis errors and redis parser * Fix lint errors * Add node 12 to travis ci * Add appveyor node 12 * Fix some of existing errors This drops support for hiredis.
This commit is contained in:
committed by
GitHub
parent
1f082aca54
commit
78936ac50c
@@ -359,7 +359,7 @@ describe('The node_redis client', function () {
|
||||
|
||||
it('send_command with callback as args', function (done) {
|
||||
client.send_command('abcdef', function (err, res) {
|
||||
assert.strictEqual(err.message, "ERR unknown command 'abcdef'");
|
||||
assert.strictEqual(err.message, 'ERR unknown command `abcdef`, with args beginning with: ');
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user