1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00

tests: remove unused parser client option from all tests & helpers

This commit is contained in:
Salakar
2020-02-09 06:08:30 +00:00
parent a513c8b7e2
commit 79927c56a0
66 changed files with 149 additions and 172 deletions

View File

@@ -7,14 +7,13 @@ var redis = config.redis;
describe('prefix key names', function () {
helper.allTests(function (parser, ip, args) {
helper.allTests(function (ip, args) {
describe('using ' + parser + ' and ' + ip, function () {
describe('using ' + ip, function () {
var client = null;
beforeEach(function (done) {
client = redis.createClient({
parser: parser,
prefix: 'test:prefix:'
});
client.on('ready', function () {