You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
tests: setup GitHub Actions to replace Travis (#1497)
Additionally adds testing against many Node.js versions and Redis versions.
This commit is contained in:
@@ -34,7 +34,11 @@ describe("The 'zadd' method", function () {
|
||||
client.zrange('infinity', 0, -1, 'WITHSCORES', function (err, res) {
|
||||
assert.equal(res[5], 'inf');
|
||||
assert.equal(res[1], '-inf');
|
||||
assert.equal(res[3], '9.9999999999999992e+22');
|
||||
if (process.platform !== 'win32') {
|
||||
assert.equal(res[3], '9.9999999999999992e+22');
|
||||
} else {
|
||||
assert.equal(res[3], '9.9999999999999992e+022');
|
||||
}
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user