NodeRedis/node-redis

View on GitHub
packages/json/lib/commands/TOGGLE.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { strict as assert } from 'node:assert';
import testUtils, { GLOBAL } from '../test-utils';
import TOGGLE from './TOGGLE';
import { parseArgs } from '@redis/client/lib/commands/generic-transformers';

describe('JSON.TOGGLE', () => {
  it('transformArguments', () => {
    assert.deepEqual(
      parseArgs(TOGGLE, 'key', '$'),
      ['JSON.TOGGLE', 'key', '$']
    );
  });

  testUtils.testWithClient('client.json.toggle', async client => {
    const [, reply] = await Promise.all([
      client.json.set('key', '$', true),
      client.json.toggle('key', '$')
    ]);

    assert.deepEqual(reply, [0]);
  }, GLOBAL.SERVERS.OPEN);
});