You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
Skip test until the issue is fixed
This commit is contained in:
@@ -20,9 +20,10 @@ describe("The 'sync' method", function () {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// This produces a parser error
|
// This produces a parser error
|
||||||
// Protocol error, got "K" as reply type byte
|
// "Protocol error, got "K" as reply type byte"
|
||||||
// I'm uncertain if this is correct behavior or not
|
// I'm uncertain if this is correct behavior or not
|
||||||
it('try to sync with the server and fail other commands', function (done) {
|
// TODO: Fix the command queue state error occuring
|
||||||
|
it.skip('try to sync with the server and fail other commands', function (done) {
|
||||||
client.on('error', function(err) {
|
client.on('error', function(err) {
|
||||||
assert.equal(err.message, 'Protocol error, got "K" as reply type byte');
|
assert.equal(err.message, 'Protocol error, got "K" as reply type byte');
|
||||||
assert.equal(err.command, 'SET');
|
assert.equal(err.command, 'SET');
|
||||||
|
Reference in New Issue
Block a user