You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
fix some more
This commit is contained in:
@@ -45,7 +45,7 @@ describe('COPY', () => {
|
||||
testUtils.testAll('copy', async client => {
|
||||
assert.equal(
|
||||
await client.copy('{tag}source', '{tag}destination'),
|
||||
false
|
||||
0
|
||||
);
|
||||
}, {
|
||||
client: GLOBAL.SERVERS.OPEN,
|
||||
|
@@ -1,19 +1,19 @@
|
||||
import { strict as assert } from 'assert';
|
||||
import testUtils, { GLOBAL } from '../test-utils';
|
||||
import { transformArguments } from './DBSIZE';
|
||||
import DBSIZE from './DBSIZE';
|
||||
|
||||
describe('DBSIZE', () => {
|
||||
it('transformArguments', () => {
|
||||
assert.deepEqual(
|
||||
transformArguments(),
|
||||
['DBSIZE']
|
||||
);
|
||||
});
|
||||
it('transformArguments', () => {
|
||||
assert.deepEqual(
|
||||
DBSIZE.transformArguments(),
|
||||
['DBSIZE']
|
||||
);
|
||||
});
|
||||
|
||||
testUtils.testWithClient('client.dbSize', async client => {
|
||||
assert.equal(
|
||||
await client.dbSize(),
|
||||
0
|
||||
);
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
testUtils.testWithClient('client.dbSize', async client => {
|
||||
assert.equal(
|
||||
await client.dbSize(),
|
||||
0
|
||||
);
|
||||
}, GLOBAL.SERVERS.OPEN);
|
||||
});
|
||||
|
@@ -22,7 +22,7 @@ describe('EXPIRE', () => {
|
||||
testUtils.testAll('expire', async client => {
|
||||
assert.equal(
|
||||
await client.expire('key', 0),
|
||||
false
|
||||
0
|
||||
);
|
||||
}, {
|
||||
client: GLOBAL.SERVERS.OPEN,
|
||||
|
@@ -30,7 +30,7 @@ describe('EXPIREAT', () => {
|
||||
testUtils.testAll('expireAt', async client => {
|
||||
assert.equal(
|
||||
await client.expireAt('key', 1),
|
||||
false
|
||||
0
|
||||
);
|
||||
}, {
|
||||
client: GLOBAL.SERVERS.OPEN,
|
||||
|
Reference in New Issue
Block a user