You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
Move command out of the index.js
This commit is contained in:
@@ -5,7 +5,7 @@ var config = require("../lib/config");
|
||||
var helper = require("../helper");
|
||||
var redis = config.redis;
|
||||
|
||||
describe("The 'sync' method", function () {
|
||||
describe.skip("The 'sync' method", function () {
|
||||
|
||||
helper.allTests(function(parser, ip, args) {
|
||||
|
||||
@@ -23,7 +23,7 @@ describe("The 'sync' method", function () {
|
||||
// "Protocol error, got "K" as reply type byte"
|
||||
// I'm uncertain if this is correct behavior or not
|
||||
// TODO: Fix the command queue state error occuring
|
||||
it.skip('try to sync with the server and fail other commands', function (done) {
|
||||
it('try to sync with the server and fail other commands', function (done) {
|
||||
client.on('error', function(err) {
|
||||
assert.equal(err.message, 'Protocol error, got "K" as reply type byte');
|
||||
assert.equal(err.command, 'SET');
|
||||
|
Reference in New Issue
Block a user