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

Add string_numbers option to handle very big numbers

This commit is contained in:
Ruben Bridgewater
2016-03-27 03:06:32 +02:00
parent 2e68a7a270
commit 0c5947be51
8 changed files with 62 additions and 89 deletions

View File

@@ -34,7 +34,7 @@ describe("The 'script' method", function () {
});
it('allows a loaded script to be evaluated', function (done) {
client.evalsha(commandSha, 0, helper.isString('99', done));
client.evalsha(commandSha, 0, helper.isNumber(99, done));
});
it('allows a script to be loaded as part of a chained transaction', function (done) {