From ab281d41baaf40a41e20a375fb8e6c711545762f Mon Sep 17 00:00:00 2001 From: Avital-Fine Date: Tue, 22 Mar 2022 16:12:41 +0100 Subject: [PATCH] remove .only --- packages/client/lib/commands/BLMPOP.spec.ts | 2 +- packages/client/lib/commands/BZMPOP.spec.ts | 2 +- packages/client/lib/commands/LMPOP.spec.ts | 2 +- packages/client/lib/commands/ZMPOP.spec.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/client/lib/commands/BLMPOP.spec.ts b/packages/client/lib/commands/BLMPOP.spec.ts index 6a10540487..510549fd48 100644 --- a/packages/client/lib/commands/BLMPOP.spec.ts +++ b/packages/client/lib/commands/BLMPOP.spec.ts @@ -2,7 +2,7 @@ import { strict as assert } from 'assert'; import testUtils, { GLOBAL } from '../test-utils'; import { transformArguments } from './BLMPOP'; -describe.only('BLMPOP', () => { +describe('BLMPOP', () => { testUtils.isVersionGreaterThanHook([7, 0]); describe('transformArguments', () => { diff --git a/packages/client/lib/commands/BZMPOP.spec.ts b/packages/client/lib/commands/BZMPOP.spec.ts index 1d66b2a8db..8fd0b34184 100644 --- a/packages/client/lib/commands/BZMPOP.spec.ts +++ b/packages/client/lib/commands/BZMPOP.spec.ts @@ -2,7 +2,7 @@ import { strict as assert } from 'assert'; import testUtils, { GLOBAL } from '../test-utils'; import { transformArguments } from './BZMPOP'; -describe.only('BZMPOP', () => { +describe('BZMPOP', () => { testUtils.isVersionGreaterThanHook([7, 0]); describe('transformArguments', () => { diff --git a/packages/client/lib/commands/LMPOP.spec.ts b/packages/client/lib/commands/LMPOP.spec.ts index c28c46a576..80ebfeabca 100644 --- a/packages/client/lib/commands/LMPOP.spec.ts +++ b/packages/client/lib/commands/LMPOP.spec.ts @@ -2,7 +2,7 @@ import { strict as assert } from 'assert'; import testUtils, { GLOBAL } from '../test-utils'; import { transformArguments } from './LMPOP'; -describe.only('LMPOP', () => { +describe('LMPOP', () => { testUtils.isVersionGreaterThanHook([7, 0]); describe('transformArguments', () => { diff --git a/packages/client/lib/commands/ZMPOP.spec.ts b/packages/client/lib/commands/ZMPOP.spec.ts index 6752ecde2b..7a82641c43 100644 --- a/packages/client/lib/commands/ZMPOP.spec.ts +++ b/packages/client/lib/commands/ZMPOP.spec.ts @@ -2,7 +2,7 @@ import { strict as assert } from 'assert'; import testUtils, { GLOBAL } from '../test-utils'; import { transformArguments } from './ZMPOP'; -describe.only('ZMPOP', () => { +describe('ZMPOP', () => { testUtils.isVersionGreaterThanHook([7, 0]); describe('transformArguments', () => {