You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
Upgrade node and dependencies (#1578)
* upgrade workflow actions
* fix setup-node version
* change redis-64 version to 3.0.503
* fix "no password is set" for redis6,
fix tests to work with redis6,
add redis6 to workflows
* do not use assert.match (was added only at v13.6.0 & v12.16.0)
* fix errors.subscribeUnsubscribeOnly regex
* fix invaliodPassword typo
* send --save "" to redis-server in tests
* upgrade dependencies, set node minimum version to 10, use current LTS versions in tests and benchmark workflows
* change windows tests too
* revert mocha back to ^4.1.0
* fix for f5528504a0
- revert mocha back to ^4.1.0
* fix some tests and upgrade mocha
* fix two more tests
* try to fix tests in windows
* upgrade denque and redis-commands
ref #1575
* replace `new Buffer` (deprecated) with `Buffer.from`
* Buffer.from(0) should be Buffer.alloc(0)
This commit is contained in:
@@ -57,7 +57,7 @@ describe("The 'client' method", function () {
|
||||
it('off', function (done) {
|
||||
helper.serverVersionAtLeast.call(this, client, [3, 2, 0]);
|
||||
assert.strictEqual(client.reply, 'ON');
|
||||
client.client(new Buffer('REPLY'), 'OFF', helper.isUndefined());
|
||||
client.client(Buffer.from('REPLY'), 'OFF', helper.isUndefined());
|
||||
assert.strictEqual(client.reply, 'OFF');
|
||||
client.set('foo', 'bar', helper.isUndefined(done));
|
||||
});
|
||||
@@ -65,7 +65,7 @@ describe("The 'client' method", function () {
|
||||
it('skip', function (done) {
|
||||
helper.serverVersionAtLeast.call(this, client, [3, 2, 0]);
|
||||
assert.strictEqual(client.reply, 'ON');
|
||||
client.client('REPLY', new Buffer('SKIP'), helper.isUndefined());
|
||||
client.client('REPLY', Buffer.from('SKIP'), helper.isUndefined());
|
||||
assert.strictEqual(client.reply, 'SKIP_ONE_MORE');
|
||||
client.set('foo', 'bar', helper.isUndefined());
|
||||
client.get('foo', helper.isString('bar', done));
|
||||
@@ -91,7 +91,7 @@ describe("The 'client' method", function () {
|
||||
var batch = client.batch();
|
||||
assert.strictEqual(client.reply, 'ON');
|
||||
batch.set('hello', 'world');
|
||||
batch.client(new Buffer('REPLY'), new Buffer('OFF'), helper.isUndefined());
|
||||
batch.client(Buffer.from('REPLY'), Buffer.from('OFF'), helper.isUndefined());
|
||||
batch.set('foo', 'bar', helper.isUndefined());
|
||||
batch.exec(function (err, res) {
|
||||
assert.strictEqual(client.reply, 'OFF');
|
||||
|
Reference in New Issue
Block a user