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

time-series

This commit is contained in:
Leibale
2023-07-11 13:11:13 -04:00
parent c515bc9571
commit 54c3a66c72
32 changed files with 879 additions and 933 deletions

View File

@@ -2,7 +2,7 @@ import { strict as assert } from 'assert';
import testUtils, { GLOBAL } from '../test-utils';
import INCRBY from './INCRBY';
describe('INCRBY', () => {
describe('TS.INCRBY', () => {
describe('transformArguments', () => {
it('without options', () => {
assert.deepEqual(
@@ -82,10 +82,8 @@ describe('INCRBY', () => {
testUtils.testWithClient('client.ts.incrBy', async client => {
assert.equal(
await client.ts.incrBy('key', 1, {
TIMESTAMP: 0
}),
0
typeof await client.ts.incrBy('key', 1),
'number'
);
}, GLOBAL.SERVERS.OPEN);
});