From 64df5dc76e94d72188619e4457995df5bc3b96a0 Mon Sep 17 00:00:00 2001 From: leibale Date: Tue, 9 Nov 2021 12:32:21 -0500 Subject: [PATCH] uncomment TIME tests --- packages/client/lib/commands/TIME.spec.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/client/lib/commands/TIME.spec.ts b/packages/client/lib/commands/TIME.spec.ts index 1139d18d53..bbaa7942db 100644 --- a/packages/client/lib/commands/TIME.spec.ts +++ b/packages/client/lib/commands/TIME.spec.ts @@ -10,9 +10,9 @@ describe('TIME', () => { ); }); - // testUtils.testWithClient('client.time', async client => { - // const reply = await client.time(); - // assert.ok(reply instanceof Date); - // assert.ok(typeof reply.microseconds === 'number'); - // }, GLOBAL.SERVERS.OPEN); + testUtils.testWithClient('client.time', async client => { + const reply = await client.time(); + assert.ok(reply instanceof Date); + assert.ok(typeof reply.microseconds === 'number'); + }, GLOBAL.SERVERS.OPEN); });