NodeRedis/node-redis

View on GitHub
packages/client/lib/commands/CLUSTER_NODES.spec.ts

Summary

Maintainability
B
4 hrs
Test Coverage
import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
import CLUSTER_NODES from './CLUSTER_NODES';
import { parseArgs } from './generic-transformers';

describe('CLUSTER NODES', () => {
  it('transformArguments', () => {
    assert.deepEqual(
      parseArgs(CLUSTER_NODES),
      ['CLUSTER', 'NODES']
    );
  });

  testUtils.testWithCluster('clusterNode.clusterNodes', async cluster => {
    const client = await cluster.nodeClient(cluster.masters[0]);
    assert.equal(
      typeof await client.clusterNodes(),
      'string'
    );
  }, GLOBAL.CLUSTERS.OPEN);
});