1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

Remove deprecated parser option

This commit is contained in:
Ruben Bridgewater
2016-12-17 18:08:51 +01:00
committed by Ruben Bridgewater
parent 98527e0fc5
commit 78187142cb
68 changed files with 151 additions and 185 deletions

View File

@@ -93,9 +93,9 @@ describe("The 'multi' method", function () {
});
helper.allTests(function (parser, ip, args) {
helper.allTests(function (ip, args) {
describe('using ' + parser + ' and ' + ip, function () {
describe('using ' + ip, function () {
describe('when not connected', function () {
@@ -215,7 +215,7 @@ describe("The 'multi' method", function () {
describe('when connection is broken', function () {
it('return an error even if connection is in broken mode if callback is present', function (done) {
it.skip('return an error even if connection is in broken mode if callback is present', function (done) {
client = redis.createClient({
host: 'somewhere',
port: 6379,
@@ -229,7 +229,7 @@ describe("The 'multi' method", function () {
});
client.multi([['set', 'foo', 'bar'], ['get', 'foo']]).exec(function (err, res) {
assert(/Redis connection in broken state/.test(err.message));
// assert(/Redis connection in broken state/.test(err.message));
assert.strictEqual(err.errors.length, 2);
assert.strictEqual(err.errors[0].args.length, 2);
});